laravel/webpack.mix.js

16 lines
549 B
JavaScript
Raw Normal View History

2017-06-01 15:13:18 -05:00
let 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
|
*/
mix.js('resources/assets/js/app.js', 'public/js')
.sass('resources/assets/sass/app.scss', 'public/css');