Skip to main content

2 posts tagged with "vercel"

View All Tags

· One min read
  • Deployment
    • vercel에 serverless 형태로 배포하는걸 추천
    • 일반 서버에 배포하려면 nodejs project로 인식해서 npm run start 사용
    • static html export하려면 npm run export 사용
  • Static HTML Export
    • package.json에서 scripts.buildnext export 추가: "build": "next build && next export"