Repo for the search and displace core module including the interface to select files and search and displace operations to run on them. https://searchanddisplace.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
795 B

3 years ago
3 years ago
3 years ago
  1. const mix = require('laravel-mix');
  2. const path = require('path');
  3. /*
  4. |--------------------------------------------------------------------------
  5. | Mix Asset Management
  6. |--------------------------------------------------------------------------
  7. |
  8. | Mix provides a clean, fluent API for defining some Webpack build steps
  9. | for your Laravel application. By default, we are compiling the Sass
  10. | file for the application as well as bundling up all the JS files.
  11. |
  12. */
  13. mix.webpackConfig({
  14. resolve: {
  15. alias: {
  16. "@/*": path.resolve(__dirname, "resources/js/"),
  17. "@components/*": path.resolve(__dirname, "resources/js/components/"),
  18. }
  19. }
  20. });
  21. mix.ts('resources/js/app.ts', 'public/js')
  22. .vue()
  23. .sass('resources/sass/app.scss', 'public/css');