Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 732 Bytes

File metadata and controls

26 lines (20 loc) · 732 Bytes
title Deployment

Deployment

Building Apps

  • Each app can be built independently:
    cd apps/host && pnpm build
    cd apps/nav && pnpm build
    cd apps/products && pnpm build
  • Output is in each app's dist/ folder.

Deploying

  • Deploy each app's dist/ to your preferred static hosting (e.g., Vercel, Netlify, Azure Static Web Apps).
  • Ensure remotes are deployed before the host for correct federation.

Environment Variables

  • Store secrets and environment-specific config in .env files (never commit secrets).

Security

See each app's README for app-specific deployment notes.