File: D:/HostingSpaces/MdnDirecteur/hours.komma.cloud/webpack.mix.js
const mix = require('laravel-mix');
mix.webpackConfig({ devtool: "inline-source-map" });
mix.setPublicPath('wwwroot');
mix.options({
processCssUrls: false,
postCss: [
require('autoprefixer')({
grid: true,
overrideBrowserslist: [
'> 2%',
'ie 11'
]
}),
]
});
mix.disableSuccessNotifications();
/*
|--------------------------------------------------------------------------
| 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.
|
*/
mix.sass('resources/assets/sass/app.scss', 'css/app.css');