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 dev
bash
$ yarn dev
bash
$ pnpm dev
bash
$ bun run dev
Building an application
bash
$ npm run build
bash
$ yarn build
bash
$ pnpm build
bash
$ bun run build