Develop your next web app with Nuxt 3 Ultra (speed)
- nuxt-headlessui - Documentation
- @nuxt/ui - Documentation
- @nuxtjs/i18n - Documentation
- @pinia/nuxt - Documentation
- @pinia-plugin-persistedstate/nuxt - Documentation
- nuxt-gtag - Documentation
- @nuxt/content - Documentation
- @nuxtjs/seo - Documentation
- nuxt-icon - Documentation (removed! now includes in @nuxt/ui)
- @nuxtjs/tailwindcss - Documentation (removed! now includes in @nuxt/ui)
- @nuxtjs/color-mode - Documentation (removed! now includes in @nuxt/ui)
- @heroicons/vue - Documentation (removed! now includes in @nuxt/ui)
- nuxt-simple-sitemap - Documentation(removed! now includes in @nuxtjs/seo
- nuxt-simple-robots - Documentation(removed! now includes in @nuxtjs/seo)
Look at the Nuxt 3 documentation to learn more about Nuxt 3.
Make sure to install the dependencies:
# npm
npm install
# pnpm
pnpm install
# yarn
yarn install
Start the development server on https://localhost:3000
:
# npm
npm run dev
# pnpm
pnpm run dev
# yarn
yarn dev
# npm
npm run generate
# pnpm
pnpm run generate
# yarn
yarn generate
After you run the generate
command, you will have a .output
folder that contains public
, server
and a nitro.json
. All you need is to copy the folders and files inside the .output/public
and paste it in your domain directory to deploy your application.
Look at the Nuxt 3 documentation to learn more.
Build the application for production:
# npm
npm run build
# pnpm
pnpm run build
# yarn
yarn build
Locally preview production build:
# npm
npm run preview
# pnpm
pnpm run preview
# yarn
yarn preview
Check out the deployment documentation for more information.