2020-04-26 05:09:32 +01:00
|
|
|
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.
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2020-05-02 06:54:14 +01:00
|
|
|
mix.js(['resources/js/app.js', 'resources/js/application_charts.js', 'resources/js/calendar.js'], 'public/js')
|
2020-04-29 03:20:00 +01:00
|
|
|
.sass('resources/sass/app.scss', 'public/css');
|
2020-05-01 05:42:19 +01:00
|
|
|
|
2020-05-02 06:54:14 +01:00
|
|
|
mix.styles([
|
|
|
|
'node_modules/@fullcalendar/core/main.css',
|
|
|
|
'node_modules/@fullcalendar/daygrid/main.css',
|
|
|
|
'node_modules/@fullcalendar/timeline/main.css',
|
|
|
|
'node_modules/@fullcalendar/timegrid/main.css',
|
|
|
|
'node_modules/@fullcalendar/list/main.css'
|
|
|
|
], 'public/css/fullcalendar.css');
|
|
|
|
|
2020-05-01 05:42:19 +01:00
|
|
|
mix.webpackConfig({
|
|
|
|
stats: {
|
|
|
|
warnings: false
|
|
|
|
}
|
|
|
|
});
|
2020-05-02 06:54:14 +01:00
|
|
|
|
|
|
|
mix.disableNotifications();
|