css improvements

This commit is contained in:
biglyderv 2024-11-25 14:12:44 -05:00
parent 3929c07717
commit 5b9197bb20
11 changed files with 385 additions and 242 deletions

View file

@ -37,6 +37,10 @@ app.post('/api/upload/:route', upload.single('file'), async (req, res) => {
res.send(await iterate(req, res, 'form'));
})
app.get('/pfp/*', (req,res) => {
res.redirect(301,'/static/img/logo.svg')
})
app.listen(port, () => {
console.log(`App listening on port ${port}`)
})