Home > Software engineering >  Laravel 9: Where does the asset build "Vite"?
Laravel 9: Where does the asset build "Vite"?

Time:07-31

I am doing a first project with Laravel where I am using Vite to build the assets.

Before that I did a little project using Laravel Mix. With Laravel Mix I add the app.css and app.js files in the public folder (folders /css and /js respectively).

While I noticed that with Vite these two files are not present in the public folder.

I have followed all the documentation and done step by step what it suggests.

My question is this: unlike Laravel Mix, does Vite buil assets in another path?

CodePudding user response:

This documentation might be useful to you - https://laravel-vite.dev/guide/essentials/building-for-production.html

  • Related