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.
|
2 months ago | |
---|---|---|
.vscode | 3 months ago | |
assets/styles | 3 months ago | |
components | 2 months ago | |
layouts | 2 months ago | |
lib | 3 months ago | |
pages | 2 months ago | |
public | 2 months ago | |
server | 3 months ago | |
.gitignore | 3 months ago | |
.prettierrc | 3 months ago | |
README.md | 3 months ago | |
app.vue | 3 months ago | |
components.json | 3 months ago | |
nuxt.config.ts | 2 months ago | |
package.json | 2 months ago | |
pnpm-lock.yaml | 2 months ago | |
tailwind.config.js | 2 months ago | |
tsconfig.json | 3 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.