No description
  • Vue 86.8%
  • TypeScript 12.1%
  • CSS 1.1%
Find a file
2026-06-02 21:01:13 -04:00
app initial setup 2026-06-02 21:01:13 -04:00
pages/sidebar initial setup 2026-06-02 21:01:13 -04:00
public init project 2026-05-22 18:36:58 -04:00
.gitignore init project 2026-05-22 18:36:58 -04:00
components.json initial setup 2026-06-02 21:01:13 -04:00
Dockerfile init project 2026-05-22 18:36:58 -04:00
LICENSE Initial commit 2026-05-19 22:34:08 +00:00
nuxt.config.ts initial setup 2026-06-02 21:01:13 -04:00
package-lock.json initial setup 2026-06-02 21:01:13 -04:00
package.json initial setup 2026-06-02 21:01:13 -04:00
README.md init project 2026-05-22 18:36:58 -04:00
tsconfig.json init project 2026-05-22 18:36:58 -04: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.