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
|
2020-06-18 15:26:58 -05:00
|
|
|
| for your Laravel applications. By default, we are compiling the CSS
|
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
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2019-04-22 21:26:44 +02:00
|
|
|
mix.js('resources/js/app.js', 'public/js')
|
2020-06-18 15:26:58 -05:00
|
|
|
.postCss('resources/css/app.css', 'public/css', [
|
|
|
|
//
|
|
|
|
]);
|