fix robots
This commit is contained in:
parent
3bd03fc0f7
commit
a103edae48
3 changed files with 11 additions and 15 deletions
13
.eleventy.js
13
.eleventy.js
|
@ -19,11 +19,12 @@ module.exports = function (eleventyConfig) {
|
|||
|
||||
// tailwind watches
|
||||
eleventyConfig.addWatchTarget('./tailwind.config.js')
|
||||
eleventyConfig.addWatchTarget('./tailwind.css')
|
||||
eleventyConfig.addWatchTarget('./tailwind.css')
|
||||
|
||||
// passthrough
|
||||
eleventyConfig.addPassthroughCopy("src/assets");
|
||||
|
||||
eleventyConfig.addPassthroughCopy('src/assets')
|
||||
eleventyConfig.addPassthroughCopy('src/robots.txt')
|
||||
|
||||
// shortcodes
|
||||
eleventyConfig.addShortcode('version', () => now)
|
||||
|
||||
|
@ -78,9 +79,9 @@ module.exports = function (eleventyConfig) {
|
|||
eleventyConfig.setLibrary('md', md)
|
||||
|
||||
// markdown filter
|
||||
eleventyConfig.addLiquidFilter("markdown", (content) => {
|
||||
return md.render(content);
|
||||
});
|
||||
eleventyConfig.addLiquidFilter('markdown', (content) => {
|
||||
return md.render(content)
|
||||
})
|
||||
|
||||
// asset_img shortcode
|
||||
eleventyConfig.addLiquidShortcode('asset_img', (filename, alt) => {
|
||||
|
|
|
@ -1,9 +0,0 @@
|
|||
---
|
||||
permalink: /robots.txt
|
||||
eleventyExcludeFromCollections: true
|
||||
---
|
||||
|
||||
Sitemap: https://coryd.dev/sitemap.xml
|
||||
|
||||
User-agent: \*
|
||||
Disallow:
|
4
src/robots.txt
Normal file
4
src/robots.txt
Normal file
|
@ -0,0 +1,4 @@
|
|||
Sitemap: https://coryd.dev/sitemap.xml
|
||||
|
||||
User-agent: \*
|
||||
Disallow:
|
Reference in a new issue