From 452689f0d7c1af5664f47323938761bc4e81ad71 Mon Sep 17 00:00:00 2001 From: Samuel Newman Date: Sun, 2 Mar 2025 05:30:36 +0000 Subject: [PATCH] fix path --- packages/appview/src/index.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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)) { -- 2.51.2