Deploying
Each template is configured with corresponding execution scripts, please refer to the package.json file in the root directory for details, for example:
json
{
"scripts": {
"dev": "vite dev",
"build": "vite build"
}
}Local development
bash
$ npm run devbash
$ yarn devbash
$ pnpm devbash
$ bun run devBuilding an application
bash
$ npm run buildbash
$ yarn buildbash
$ pnpm buildbash
$ bun run build