We recommend to look at the documentation.
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
Start the development server on http://localhost:3000
pnpm dev
Build the application for production:
pnpm build
pnpm start
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
.
├── .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.