laravel-mix
laravel-mix copied to clipboard
WARNING in child compilations (Use 'stats.children: true' resp. '--stats-children' for more details)
- Laravel Mix Version: 6.0.43
- Node Version (
node -v
): 17.9.0 - NPM Version (
npm -v
): 8.5.5 - OS: macos monterey
Description:
we get this error when running mix on a clean install:
WARNING in child compilations (Use 'stats.children: true' resp. '--stats-children' for more details)
the only solution right now is to --save-exact autoprefixer 10.4.5
would be great if mix worked with the latest version of autoprefixer without having to lock in that specific version
Same issue here but in an existing project. Using autoprefixer 10.4.5 fixes it for me as well.
https://github.com/webpack-contrib/sass-loader
I have just upgraded sass-loader from v12.6.0 to v13.3.1
and started receiving this error.
12 WARNINGS in child compilations (Use 'stats.children: true' resp. '--stats-children' for more details)
webpack compiled with 12 warnings
Update: June 1st, 2023
I was able to see the warnings by using:
mix.webpackConfig({
stats: {
children: true
}
});
So irrelevant issue, needed to change my scss code to replace /
with math.div
syntax.