-
Notifications
You must be signed in to change notification settings - Fork 30
Open
Labels
feature: gardeningThings that make the site easier to maintain and monitorThings that make the site easier to maintain and monitor
Description
Our server currently serves robots.txt
and sitemap.xml
.
Lines 10 to 20 in 48f98e0
if (!dev) { | |
/** | |
* Static Files | |
*/ | |
server.get('/robots.txt', (req, res) => { | |
return res.sendFile('/static/robots.txt'); | |
}); | |
server.get('/sitemap.xml', (req, res) => { | |
return res.sendFile('/static/sitemap.xm'); | |
}); | |
} |
Both files aren't generated at the moment. We should either remove this behavior or correctly generate them.
Metadata
Metadata
Assignees
Labels
feature: gardeningThings that make the site easier to maintain and monitorThings that make the site easier to maintain and monitor