You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
3 weeks ago | |
|---|---|---|
| .claude | 1 month ago | |
| app | 3 weeks ago | |
| assets/css | 1 month ago | |
| docs | 1 month ago | |
| i18n/locales | 2 months ago | |
| locales | 2 months ago | |
| middleware | 2 months ago | |
| public | 2 months ago | |
| resources | 2 months ago | |
| scripts | 2 months ago | |
| server | 1 month ago | |
| tasks | 1 month ago | |
| tests | 2 months ago | |
| types | 2 months ago | |
| .dockerignore | 2 months ago | |
| .env.example | 2 months ago | |
| .gitignore | 2 months ago | |
| .prettierignore | 2 months ago | |
| .prettierrc.json | 2 months ago | |
| CLAUDE.md | 1 month ago | |
| README.md | 2 months ago | |
| components.json | 2 months ago | |
| docker-compose.dev.yml | 2 months ago | |
| drizzle.config.ts | 2 months ago | |
| eslint.config.mjs | 2 months ago | |
| nuxt.config.ts | 2 months ago | |
| package.json | 1 month ago | |
| pnpm-lock.yaml | 1 month ago | |
| tailwind.config.ts | 4 weeks ago | |
| tsconfig.json | 2 months ago | |
README.md
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.