Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

1 рік тому
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.