You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
NEW: The tailwindcss() function throws an exception when the manifest file is missing. When testing, we don't want that behavior as we don't always need to compile our styles to run the tests (sometimes we do). For that reason, you may now use the new InteractsWithTailwind trait and call the $this->withoutTailwind() method on your tests (or in the base TestCase) to disable the missing manifest exception on your tests (see docs). Initial work by @andreasnij (thanks!)
CHANGED: The tailwindcss:install command was changed to work with the new frontend setup in Laravel 9, which uses Vite instead of Mix. It should also keep working on installs in Laravel apps using Mix. Of course, it also works on apps using neither (*cough* *cough* Importmap Laravel)