How can I solve this warning when creating laravel project?
1 WARNING in child compilations (Use ‘stats.children: true’ resp. ‘–stats-children’ for more details)
Steps to replicate:
- composer create-project –prefer-dist laravel/laravel example
- cd example
- composer requires laravel/ui
- php artisan ui vue –auth
- npm install vue@next vue-router@next vue-loader@next
- npm install
- npm run dev
Answer
https://github.com/twbs/bootstrap/issues/36259 The color-adjust shorthand is currently deprecated and it depends on the autoprefixer@10.4.6.
I was able to fix this by reverting the autoprefixer package aswell as @Benno to version 10.4.5, run this:
npm install autoprefixer@10.4.5 –save-exact