๐๏ธ Build Guide
Build the NestFlux monorepo for production deployment.
๐ Build Everythingโ
Build the entire project:
pnpm build
This builds shared packages first, then client and server applications in the correct dependency order.
๐ง Build Individual Partsโ
๐ฆ All Packagesโ
pnpm build:packages
Builds all shared packages (@shared/*
) that client and server depend on.
โ๏ธ Clientโ
pnpm build:client
Builds the React frontend application with Vite. Output: apps/client/dist/
๐ Serverโ
pnpm build:server
Builds the NestJS backend API. Output: apps/server/dist/
โ ๏ธ Note: Always build packages first before building client or server.