X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Fcontrollers%2Fclient.ts;h=f07e421b4795cbe0473dcd11ac796efbd2b6b67a;hb=2519d9fec6f84906d1b10770be791ad367186ca7;hp=c85bd8a5ed79c94d880cd260837a2f5e18287169;hpb=c7b1b92b118b0db21d542169bbe2ea9a33fd8943;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/controllers/client.ts b/server/controllers/client.ts index c85bd8a5e..f07e421b4 100644 --- a/server/controllers/client.ts +++ b/server/controllers/client.ts @@ -11,6 +11,7 @@ const clientsRouter = express.Router() const distPath = join(root(), 'client', 'dist') const assetsImagesPath = join(root(), 'client', 'dist', 'client', 'assets', 'images') +const manifestPath = join(root(), 'client', 'dist', 'manifest.json') const embedPath = join(distPath, 'standalone', 'videos', 'embed.html') const indexPath = join(distPath, 'index.html') @@ -25,6 +26,7 @@ clientsRouter.use('/videos/embed', (req: express.Request, res: express.Response, }) // Static HTML/CSS/JS client files +clientsRouter.use('/manifest.json', express.static(manifestPath, { maxAge: STATIC_MAX_AGE })) clientsRouter.use('/client', express.static(distPath, { maxAge: STATIC_MAX_AGE })) clientsRouter.use('/client/assets/images', express.static(assetsImagesPath, { maxAge: STATIC_MAX_AGE }))