Files
vuefilemanager/webpack.mix.js
MakingCG 4504276563 Version 1.3
- i18n localization support
- Added SK, EN language files
- Video/Audio preview in file preview panel (Thanks to Joshua Fouyon to participating on this feature)
- Drop uploading (You can now drag files from desktop and drop it to VueFileManager)
- Fixed bug when rename item in safari browser
- Fixed bug when you drag folder from trash to favourites in sidebar panel
- small functions and design improvements
2020-04-03 11:52:54 +02:00

27 lines
846 B
JavaScript
Vendored

const mix = require('laravel-mix');
/*
|--------------------------------------------------------------------------
| 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.js('resources/js/main.js', 'public/js')
.sass('resources/sass/app.scss', 'public/css', {
implementation: require('node-sass')
})
.webpackConfig({
resolve: {
alias: {
"@assets": path.resolve(__dirname, "resources/sass"),
"@": path.resolve(__dirname, "resources/js"),
}
},
})
.disableNotifications();