]> git.localhorst.tv Git - alttp.git/blob - webpack.mix.js
install bases system
[alttp.git] / webpack.mix.js
1 const mix = require('laravel-mix');
2
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
14 mix.js('resources/js/app.js', 'public/js')
15     .react()
16     .sass('resources/sass/app.scss', 'public/css')
17         .sourceMaps(true)
18         .version();