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
29 lines
1021 B
const mix = require('laravel-mix');
|
|
const path = require('path');
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Mix Asset Management
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Mix provides a clean, fluent API for defining some Webpack build steps
|
|
| for your Laravel application. By default, we are compiling the Sass
|
|
| file for the application as well as bundling up all the JS files.
|
|
|
|
|
*/
|
|
|
|
mix.webpackConfig({
|
|
resolve: {
|
|
alias: {
|
|
"@": path.resolve(__dirname, "resources/js/"),
|
|
"@components": path.resolve(__dirname, "resources/js/components/"),
|
|
"@interfaces": path.resolve(__dirname, "resources/js/interfaces/"),
|
|
"@services": path.resolve(__dirname, "resources/js/services/"),
|
|
"@plugins": path.resolve(__dirname, "resources/js/plugins/"),
|
|
}
|
|
}
|
|
});
|
|
|
|
mix.ts('resources/js/app.ts', 'public/js')
|
|
.vue()
|
|
.sass('resources/sass/app.sass', 'public/css');
|