aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/controllers/client.ts
diff options
context:
space:
mode:
Diffstat (limited to 'server/controllers/client.ts')
-rw-r--r--server/controllers/client.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/server/controllers/client.ts b/server/controllers/client.ts
index 28b42911a..f07e421b4 100644
--- a/server/controllers/client.ts
+++ b/server/controllers/client.ts
@@ -11,7 +11,7 @@ const clientsRouter = express.Router()
11 11
12const distPath = join(root(), 'client', 'dist') 12const distPath = join(root(), 'client', 'dist')
13const assetsImagesPath = join(root(), 'client', 'dist', 'client', 'assets', 'images') 13const assetsImagesPath = join(root(), 'client', 'dist', 'client', 'assets', 'images')
14const manifestPath = join(root(), 'client', 'dist', 'client', 'manifest.json') 14const manifestPath = join(root(), 'client', 'dist', 'manifest.json')
15const embedPath = join(distPath, 'standalone', 'videos', 'embed.html') 15const embedPath = join(distPath, 'standalone', 'videos', 'embed.html')
16const indexPath = join(distPath, 'index.html') 16const indexPath = join(distPath, 'index.html')
17 17
@@ -26,8 +26,8 @@ clientsRouter.use('/videos/embed', (req: express.Request, res: express.Response,
26}) 26})
27 27
28// Static HTML/CSS/JS client files 28// Static HTML/CSS/JS client files
29clientsRouter.use('/manifest.json', express.static(manifestPath, { maxAge: STATIC_MAX_AGE }))
29clientsRouter.use('/client', express.static(distPath, { maxAge: STATIC_MAX_AGE })) 30clientsRouter.use('/client', express.static(distPath, { maxAge: STATIC_MAX_AGE }))
30clientsRouter.use('/client/manifest.json', express.static(manifestPath, { maxAge: STATIC_MAX_AGE }))
31clientsRouter.use('/client/assets/images', express.static(assetsImagesPath, { maxAge: STATIC_MAX_AGE })) 31clientsRouter.use('/client/assets/images', express.static(assetsImagesPath, { maxAge: STATIC_MAX_AGE }))
32 32
33// 404 for static files not found 33// 404 for static files not found