···63For production deployment:
64651. Build all packages in the correct order:
066 ```bash
67 pnpm build
68 ```
69-70 This will:
071 - Build the lexicon package first (shared type definitions)
72 - Build the frontend (`packages/client`) next
73 - Finally build the backend (`packages/appview`)
···78 ```
7980The backend server will:
081- Serve the API at `/api/*` endpoints
82- Serve the frontend static files from the client's build directory
83- Handle client-side routing by serving index.html for all non-API routes
···63For production deployment:
64651. Build all packages in the correct order:
66+67 ```bash
68 pnpm build
69 ```
70+71 This will:
72+73 - Build the lexicon package first (shared type definitions)
74 - Build the frontend (`packages/client`) next
75 - Finally build the backend (`packages/appview`)
···80 ```
8182The backend server will:
83+84- Serve the API at `/api/*` endpoints
85- Serve the frontend static files from the client's build directory
86- Handle client-side routing by serving index.html for all non-API routes