the statusphere demo reworked into a vite/react app in a monorepo

fix path

Changed files
+4 -1
packages
appview
src
+4 -1
packages/appview/src/index.ts
··· 127 app.use('/api', router) 128 129 // Serve static files from the frontend build 130 - const frontendPath = path.resolve(__dirname, '../../../client/dist') 131 132 // Check if the frontend build exists 133 if (fs.existsSync(frontendPath)) {
··· 127 app.use('/api', router) 128 129 // Serve static files from the frontend build 130 + const frontendPath = path.resolve( 131 + __dirname, 132 + '../../../packages/client/dist', 133 + ) 134 135 // Check if the frontend build exists 136 if (fs.existsSync(frontendPath)) {