close

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

I was creating new laravel App And I faced the following warning 1 WARNING in child compilations (Use ‘stats.children: true’ resp. ‘–stats-children’ for more details) in Laravel. We are going to Learn about All Possible Solutions So Lets Get Start with This Article.

How 1 WARNING in child compilations (Use ‘stats.children: true’ resp. ‘–stats-children’ for more details) Error Occurs?

I was creating a new laravel App And I faced the following warning:

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

So here I am writing all the possible solutions that I have tried to resolve this error.

How To Solve 1 WARNING in child compilations (Use ‘stats.children: true’ resp. ‘–stats-children’ for more details) Error?

  1. How To Solve 1 WARNING in child compilations (Use ‘stats.children: true’ resp. ‘–stats-children’ for more details) Error?

    To Solve 1 WARNING in child compilations (Use ‘stats.children: true’ resp. ‘–stats-children’ for more details) Error In order to solve this warning you just need to add stats.children: true in your webpack.mix.js file. First of all open your webpack.mix.js file and add the following code: mix.webpackConfig({ stats: { children: true, }, }); And Now, Your error must be solved. Thanks.

  2. 1 WARNING in child compilations (Use ‘stats.children: true’ resp. ‘–stats-children’ for more details)

    To Solve 1 WARNING in child compilations (Use ‘stats.children: true’ resp. ‘–stats-children’ for more details) Error In order to solve this warning you just need to add stats.children: true in your webpack.mix.js file. First of all open your webpack.mix.js file and add the following code: mix.webpackConfig({ stats: { children: true, }, }); And Now, Your error must be solved. Thanks.

Solution 1: Add stats.children: true

In order to solve this warning you just need to add stats.children: true in your webpack.mix.js file. First of all open your webpack.mix.js file and add the following code.

mix.webpackConfig({
    stats: {
        children: true,
    },
});

And Now, Your error must be solved. Thanks.

Conclusion

It’s all About this error. Hope We solved Your error. Comment below Your thoughts and your queries. Also, Comment below which solution worked for you?

Also, Read

1 thought on “[Solved] 1 WARNING in child compilations (Use ‘stats.children: true’ resp. ‘–stats-children’ for more details)”

Leave a Comment