2.0.0
Setting Vite apps has changed from this:
npm_exec = "npm"
npx_exec = "npx"
serve_app = "app"
vite_apps = ["frontend"]
to this:
npm_exec = "npm"
npx_exec = "npx"
serve_app = "app_flask"
vite_app.frontend = "frontend"
This is to allow for the new --only
flag, and to set the folder names in the serving app vite folder better.
New --only
or -o
flag. This allows you to pack and transport the selected vite app, which is useful in deployments if you have a mono repo of frontends.