/nuxt3-app

nuxt3 template

Primary LanguageTypeScript

Nuxt 3 Minimal Starter

We recommend to look at the documentation.

Setup

npx nuxi init nuxt3-app

🎉 Another dandy Nuxt project just made! Next steps:

 📁  `cd nuxt3-app`

 💿  Install dependencies with `npm install` or `yarn install`

 🚀  Start development server with `npm run dev` or `yarn dev`

Make sure to install the dependencies

pnpm install

Development

Start the development server on http://localhost:3000

pnpm dev

Production

Build the application for production:

pnpm build
pnpm start

Dependencies Update

If you want to update the libraries, I left a nice command for you. Select it with space and press enter.

pnpm up -i  #yarn upgrade-interactive --latest

Directory Structure

.
├── .git
├── .gitignore
├── .nuxt
├── README.md
├── app.vue
├── assets
├── components
├── composables
├── layouts
├── node_modules
├── nuxt.config.ts
├── package.json
├── pages
├── public
├── plugins
├── pnpm-lock.yaml
├── server
└── tsconfig.json

Checkout the deployment documentation.