No description
  • TypeScript 99.8%
  • JavaScript 0.1%
Find a file
2026-05-15 18:04:58 +02:00
app Init 2026-05-15 18:04:58 +02:00
lib Init 2026-05-15 18:04:58 +02:00
prisma Init 2026-05-15 18:04:58 +02:00
public Init 2026-05-15 18:04:58 +02:00
server Init 2026-05-15 18:04:58 +02:00
shared Init 2026-05-15 18:04:58 +02:00
.gitignore Init 2026-05-15 18:04:58 +02:00
dev.db Init 2026-05-15 18:04:58 +02:00
eslint.config.mjs Init 2026-05-15 18:04:58 +02:00
nuxt.config.ts Init 2026-05-15 18:04:58 +02:00
package-lock.json Init 2026-05-15 18:04:58 +02:00
package.json Init 2026-05-15 18:04:58 +02:00
prisma.config.ts Init 2026-05-15 18:04:58 +02:00
README.md Init 2026-05-15 18:04:58 +02:00
tsconfig.json Init 2026-05-15 18:04:58 +02:00

Nuxt Minimal Starter

Look at the Nuxt documentation to learn more.

Setup

Make sure to install 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 dev

# yarn
yarn dev

# bun
bun run dev

Production

Build the application for production:

# npm
npm run build

# pnpm
pnpm build

# yarn
yarn build

# bun
bun run build

Locally preview production build:

# npm
npm run preview

# pnpm
pnpm preview

# yarn
yarn preview

# bun
bun run preview

Check out the deployment documentation for more information.