diff --git a/packages/appview/src/index.ts b/packages/appview/src/index.ts index 03cc0ea..4990d8e 100644 --- a/packages/appview/src/index.ts +++ b/packages/appview/src/index.ts @@ -127,7 +127,10 @@ export class Server { app.use('/api', router) // Serve static files from the frontend build - const frontendPath = path.resolve(__dirname, '../../../client/dist') + const frontendPath = path.resolve( + __dirname, + '../../../packages/client/dist', + ) // Check if the frontend build exists if (fs.existsSync(frontendPath)) {