Is it possible to do this type of thing in Laravel Vite (or just Vite)? I have a project that uses WebPack to build several sub-project front ends with separate js files. Wondering if there is a way to use Vite but have the js broken out to separate files / bundled specifically.
The result of this is npm run watch builds all the files to public/js/app1.js, public/js/app2.js, and public/js/app3.js. How can I accomplish something similar with Vite?