We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 974366b commit 9b15976Copy full SHA for 9b15976
src/handlers/get.js
@@ -26,6 +26,7 @@ function getRobots() {
26
27
export default async function getHandler({ env, daCtx }) {
28
const { path } = daCtx;
29
+ if (path === '/') return get404();
30
31
if (path.startsWith('/favicon.ico')) return get404();
32
if (path.startsWith('/robots.txt')) return getRobots();
0 commit comments