diff --git a/.eleventy.js b/.eleventy.js index 2c4af6a..12b77ca 100644 --- a/.eleventy.js +++ b/.eleventy.js @@ -2,6 +2,7 @@ module.exports = function (eleventyConfig) { eleventyConfig.addPassthroughCopy({ "src/images": "images" }); eleventyConfig.addPassthroughCopy({ "src/styles": "styles" }); eleventyConfig.addPassthroughCopy({ "src/scripts": "scripts" }); + eleventyConfig.addPassthroughCopy({ "src/robots.txt": "robots.txt"}); return { dir: { input: "src", diff --git a/src/robots.txt b/src/robots.txt new file mode 100644 index 0000000..4eef0f3 --- /dev/null +++ b/src/robots.txt @@ -0,0 +1,3 @@ +User-agent:* +Disallow: / +Allow: /credits/ \ No newline at end of file