Hanye官网
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 822B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. # Nuxt Minimal Starter
  2. Look at the [Nuxt documentation](https://nuxt.com/docs/getting-started/introduction) to learn more.
  3. ## Setup
  4. Make sure to install dependencies:
  5. ```bash
  6. # npm
  7. npm install
  8. # pnpm
  9. pnpm install
  10. # yarn
  11. yarn install
  12. # bun
  13. bun install
  14. ```
  15. ## Development Server
  16. Start the development server on `http://localhost:3000`:
  17. ```bash
  18. # npm
  19. npm run dev
  20. # pnpm
  21. pnpm dev
  22. # yarn
  23. yarn dev
  24. # bun
  25. bun run dev
  26. ```
  27. ## Production
  28. Build the application for production:
  29. ```bash
  30. # npm
  31. npm run build
  32. # pnpm
  33. pnpm build
  34. # yarn
  35. yarn build
  36. # bun
  37. bun run build
  38. ```
  39. Locally preview production build:
  40. ```bash
  41. # npm
  42. npm run preview
  43. # pnpm
  44. pnpm preview
  45. # yarn
  46. yarn preview
  47. # bun
  48. bun run preview
  49. ```
  50. Check out the [deployment documentation](https://nuxt.com/docs/getting-started/deployment) for more information.