[Solved] 1 WARNING in child compilations (Use 'stats.children: true' resp. '--stats-children' for more details)

Laravel Mohit Mozumder

Problem:

I got this warning while creating laravel project -

1 WARNING in child compilations(Use 'stats.children: true' resp.'--stats-children' 
for more details


Solution:

You can fix this issue by reverting the autoprefixer package as well as @Benno to version 10.4.5. Run this:

npm install autoprefixer@10.4.5 --save-exact


Note: If you have problem with autoprefixer, you can add version autoprefixer. Add code on package.json

when you use npm

    "overrides": {
      "autoprefixer": "10.4.5"
     },

Or, when you use yarn

    "resolutions": {
      "autoprefixer": "10.4.5"
    },

Don't forget to delete your package-lock and node_modules , then npm install again. it work for me (react-bootstrap.v.5)


Thank you for reading the article. If you have any problem regarding thiss issue feel free to contact with us.