From 5386c5aac78b2009f7938d6764c98a098521a677 Mon Sep 17 00:00:00 2001 From: Eric Eastwood Date: Wed, 16 Feb 2022 14:13:30 -0600 Subject: [PATCH] Point to the right file path --- server/routes/install-routes.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/routes/install-routes.js b/server/routes/install-routes.js index 577c899..a5144ff 100644 --- a/server/routes/install-routes.js +++ b/server/routes/install-routes.js @@ -64,12 +64,12 @@ function installRoutes(app) { app.get('/styles.css', async function (req, res) { res.set('Content-Type', 'text/css'); - res.sendFile(path.join(__dirname, '../public/styles/styles.css')); + res.sendFile(path.join(__dirname, '../../public/styles/styles.css')); }); app.get('/matrix-public-archive.js', async function (req, res) { res.set('Content-Type', 'text/css'); - res.sendFile(path.join(__dirname, '../dist/matrix-public-archive.es.js')); + res.sendFile(path.join(__dirname, '../../dist/matrix-public-archive.es.js')); }); app.get(