Go to file
2024-09-17 11:36:12 +08:00
components init 2024-04-12 18:23:44 +08:00
middleware init 2024-04-12 18:23:44 +08:00
pages init 2024-04-12 18:23:44 +08:00
prisma init 2024-04-12 18:23:44 +08:00
public init 2024-04-12 18:23:44 +08:00
server init 2024-04-12 18:23:44 +08:00
types init 2024-04-12 18:23:44 +08:00
.env.docker docker run test 2024-04-12 22:07:50 +08:00
.gitignore init 2024-04-12 18:23:44 +08:00
app.vue init 2024-04-12 18:23:44 +08:00
docker-compose.yaml Feat(.env.default):Delete the version 2024-09-17 11:31:15 +08:00
dockerfile docker run test 2024-04-12 22:07:50 +08:00
init.sql docker run test 2024-04-12 22:07:50 +08:00
nuxt.config.ts init 2024-04-12 18:23:44 +08:00
package-lock.json init 2024-04-12 18:23:44 +08:00
package.json Feat(.env.default):Delete the version 2024-09-17 11:31:15 +08:00
README.md init 2024-04-12 18:23:44 +08:00
run Fix(/run):Use cnpm instead of yarn. 2024-09-17 11:36:12 +08:00
spa-loading-template.html init 2024-04-12 18:23:44 +08:00
tsconfig.json init 2024-04-12 18:23:44 +08:00

Nuxt 3 Minimal Starter

Look at the Nuxt 3 documentation to learn more.

Setup

Make sure to install the dependencies:

# npm
npm install

# pnpm
pnpm install

# yarn
yarn install

# bun
bun install

Development Server

Start the development server on http://localhost:3000:

# npm
npm run dev

# pnpm
pnpm run dev

# yarn
yarn dev

# bun
bun run dev

Production

Build the application for production:

# npm
npm run build

# pnpm
pnpm run build

# yarn
yarn build

# bun
bun run build

Locally preview production build:

# npm
npm run preview

# pnpm
pnpm run preview

# yarn
yarn preview

# bun
bun run preview

Check out the deployment documentation for more information.