Skip to content

Latest commit

 

History

History
34 lines (22 loc) · 762 Bytes

File metadata and controls

34 lines (22 loc) · 762 Bytes

image

🎉 Getting Started


Project commands

  1. 📦 Install dependencies.
npm install
  1. 🏗 Run the project for local dev. This will start a hot-reloading server at localhost:3000.
npm run dev
  1. 🌌 Build the app for server-side rendered deployment. See more about Universal SSR in the Nuxt.js docs.
npm run build

# And to serve that deployment...
npm run start
  1. ⚡️ Generate a fully pre-rendered static site. See more in the docs.
npm run generate