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.

README.md 632 B

1 year ago
123456789101112131415161718192021222324252627282930313233343536373839404142
  1. # Nuxt 3 Minimal Starter
  2. Look at the [Nuxt 3 documentation](https://nuxt.com/docs/getting-started/introduction) to learn more.
  3. ## Setup
  4. Make sure to install the dependencies:
  5. ```bash
  6. # yarn
  7. yarn install
  8. # npm
  9. npm install
  10. # pnpm
  11. pnpm install --shamefully-hoist
  12. ```
  13. ## Development Server
  14. Start the development server on http://localhost:3000
  15. ```bash
  16. npm run dev
  17. ```
  18. ## Production
  19. Build the application for production:
  20. ```bash
  21. npm run build
  22. ```
  23. Locally preview production build:
  24. ```bash
  25. npm run preview
  26. ```
  27. Check out the [deployment documentation](https://nuxt.com/docs/getting-started/deployment) for more information.