fork of hey-api/openapi-ts because I need some additional things
1# Nuxt Minimal Starter
2
3Look at the [Nuxt documentation](https://nuxt.com/docs/getting-started/introduction) to learn more.
4
5## Setup
6
7Make sure to install dependencies:
8
9```bash
10# npm
11npm install
12
13# pnpm
14pnpm install
15
16# yarn
17yarn install
18
19# bun
20bun install
21```
22
23## Development Server
24
25Start the development server on `http://localhost:3000`:
26
27```bash
28# npm
29npm run dev
30
31# pnpm
32pnpm dev
33
34# yarn
35yarn dev
36
37# bun
38bun run dev
39```
40
41## Production
42
43Build the application for production:
44
45```bash
46# npm
47npm run build
48
49# pnpm
50pnpm build
51
52# yarn
53yarn build
54
55# bun
56bun run build
57```
58
59Locally preview production build:
60
61```bash
62# npm
63npm run preview
64
65# pnpm
66pnpm preview
67
68# yarn
69yarn preview
70
71# bun
72bun run preview
73```
74
75Check out the [deployment documentation](https://nuxt.com/docs/getting-started/deployment) for more information.