laravel/webpack.mix.js

16 lines
537 B
JavaScript
Raw Normal View History

2018-08-31 10:35:44 +01:00
const mix = require('laravel-mix');
2017-01-17 14:30:48 -06:00
/*
|--------------------------------------------------------------------------
| 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
2017-01-17 16:00:28 -06:00
| file for the application as well as bundling up all the JS files.
2017-01-17 14:30:48 -06:00
|
*/
2018-07-31 15:03:51 -05:00
mix.js('resources/js/app.js', 'public/js')
.sass('resources/sass/app.scss', 'public/css');