mirror of
https://codeberg.org/keyoxide/keyoxide-web.git
synced 2024-12-22 23:09:29 -07:00
Fix paths
This commit is contained in:
parent
0a7f656c2d
commit
0c7f682a26
1 changed files with 2 additions and 2 deletions
|
@ -69,8 +69,8 @@ app.use(stringReplace({
|
||||||
}))
|
}))
|
||||||
|
|
||||||
// Routes
|
// Routes
|
||||||
app.use('/favicon.svg', express.static('../static/favicon.svg'))
|
app.use('/favicon.svg', express.static('./static/favicon.svg'))
|
||||||
app.use('/robots.txt', express.static('../static/robots.txt'))
|
app.use('/robots.txt', express.static('./static/robots.txt'))
|
||||||
|
|
||||||
app.use('/', mainRoute)
|
app.use('/', mainRoute)
|
||||||
app.use('/api', apiRoute)
|
app.use('/api', apiRoute)
|
||||||
|
|
Loading…
Reference in a new issue