Point to the right file path

This commit is contained in:
Eric Eastwood 2022-02-16 14:13:30 -06:00
parent 166857e0de
commit 5386c5aac7
1 changed files with 2 additions and 2 deletions

View File

@ -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(