chore: explicit searches
This commit is contained in:
parent
ba64240bd0
commit
72d6d6a8ac
1 changed files with 7 additions and 0 deletions
|
@ -44,6 +44,13 @@ app.use((req, res, next) => {
|
|||
if (req.path.endsWith('.css')) res.setHeader('Content-Type', 'text/css')
|
||||
else if (req.path.endsWith('.js')) res.setHeader('Content-Type', 'application/javascript')
|
||||
else if (req.path.endsWith('.json')) res.setHeader('Content-Type', 'application/json')
|
||||
else if (req.path.startsWith('/api/')) res.setHeader('Content-Type', 'application/json')
|
||||
else if (req.path.startsWith('/feeds/all')) res.setHeader('Content-Type', 'application/xml')
|
||||
else if (req.path.startsWith('/feeds/books')) res.setHeader('Content-Type', 'application/xml')
|
||||
else if (req.path.startsWith('/feeds/links')) res.setHeader('Content-Type', 'application/xml')
|
||||
else if (req.path.startsWith('/feeds/movies')) res.setHeader('Content-Type', 'application/xml')
|
||||
else if (req.path.startsWith('/feeds/posts')) res.setHeader('Content-Type', 'application/xml')
|
||||
else if (req.path.startsWith('/feeds/syndication')) res.setHeader('Content-Type', 'application/xml')
|
||||
next()
|
||||
})
|
||||
|
||||
|
|
Reference in a new issue