my-idlers/webpack.mix.js
cp6 b2b6dc36c9 Changes for the move to NPM Webpack asset loading
Changes for the move to Webpack asset loading
Bootstrap light and dark get own CSS files still
2022-11-12 14:04:04 +11:00

20 lines
648 B
JavaScript
Vendored

const mix = require('laravel-mix');
/*
|--------------------------------------------------------------------------
| Mix Asset Management
|--------------------------------------------------------------------------
|
| Mix provides a clean, fluent API for defining some Webpack build steps
| for your Laravel applications. By default, we are compiling the CSS
| file for the application as well as bundling up all the JS files.
|
*/
mix.js('resources/js/app.js', 'public/js').postCss('resources/css/app.css', 'public/css', [
]);
mix.postCss('resources/css/light.css', 'public/css');
mix.postCss('resources/css/dark.css', 'public/css');