Skip to content

Fix/remove robots.txt and sitemap.xml #74

Open
@lgeiger

Description

Our server currently serves robots.txt and sitemap.xml.

nteract.io/server.js

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

Assignees

No one assigned

    Labels

    feature: gardeningThings that make the site easier to maintain and monitor

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions