php artisan -V
what does this command say? update your composer or laravel installer first.
Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.
new Laravel install - docs say it uses Vite but code has Mix. And Vite includes fail.
Just base install and breeze using Laravel document instructions Windows PC local install node v17.1.0 npm v8.1.2
composer create-project laravel/laravel myapp php artisan breeze:install npm install npm run dev php artisan migrate
home page loads fine. But go to Login or register and you get massive SVG images and an include output as text. so Vite styling and setup not working. Note: also see Mix messages during npm run dev
package.json has a laravel mix entry. "scripts": { "development": "mix", ... "devDependencies": { "laravel-mix": "^6.0.6", but no Vite entries in it.
So what am I missing? Is there another step hat's needed or anything?
Please or to participate in this conversation.