Just started a new default project of laravel with no changes and ran mix, and noticed no output was generated for the CSS file even though there is default CSS included with laravel.
Is this likely a localized bug, some weird cache? Or is something happening with laravel mix at the moment?
The problem is if you use the default php artisan ui:auth which DOES show up in the command list... It uses bootstrap classes but NOT the bootstrap framework.
That command should be stripped out or overridden.
The other commands all actually use the bootstrap css as well. Essentially they are the same blade files. By separating the whole package I thought they might take advantage and give some options like tailwind. I think it’s a missed opportunity.
That being said they’ve made it easy enough to write a preset command, that I’m not sure why I just don’t take a day and make my own.
I’m also having issues with yarn, they changed the scripts to run “npm” even if you start out with yarn in “package.json”. And for some reason cross-env isn’t installing properly.
Just a host of small annoyances, that took a couple of hours to figure out.