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.

29 lines
1021 B

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. "@interfaces": path.resolve(__dirname, "resources/js/interfaces/"),
  19. "@services": path.resolve(__dirname, "resources/js/services/"),
  20. "@plugins": path.resolve(__dirname, "resources/js/plugins/"),
  21. }
  22. }
  23. });
  24. mix.ts('resources/js/app.ts', 'public/js')
  25. .vue()
  26. .sass('resources/sass/app.sass', 'public/css');