- Allow customizing start + build commands for custom UIs (#305)
Migrating: make sure to add a start
and build
script to package.json
if using a custom UI. Example using Vite:
"scripts": {
"start": "vite",
"build": "vite build"
}
If using Vite, add a vite.config.ts
in package root (example)