Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

pirms 1 gada
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.