No description
  • TypeScript 50.6%
  • Vue 42.8%
  • JavaScript 6.6%
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
2025-05-06 14:51:18 +02:00
.vscode Initial commit 2025-05-06 12:41:50 +00:00
components Initial commit 2025-05-06 12:41:50 +00:00
middleware Initial commit 2025-05-06 12:41:50 +00:00
netcode add events submodule 2025-05-06 14:51:18 +02:00
pages Initial commit 2025-05-06 12:41:50 +00:00
public Initial commit 2025-05-06 12:41:50 +00:00
server Initial commit 2025-05-06 12:41:50 +00:00
store Initial commit 2025-05-06 12:41:50 +00:00
.gitignore Initial commit 2025-05-06 12:41:50 +00:00
.gitmodules add events submodule 2025-05-06 14:51:18 +02:00
app.vue Initial commit 2025-05-06 12:41:50 +00:00
eslint.config.mjs Initial commit 2025-05-06 12:41:50 +00:00
nuxt.config.ts Initial commit 2025-05-06 12:41:50 +00:00
package-lock.json Initial commit 2025-05-06 12:41:50 +00:00
package.json Initial commit 2025-05-06 12:41:50 +00:00
README.md Initial commit 2025-05-06 12:41:50 +00:00
tsconfig.json Initial commit 2025-05-06 12:41:50 +00: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.