X-Robots-Tag "noindex, nofollow"

This commit is contained in:
Zsolt Ero
2025-02-27 16:52:31 +01:00
parent d76a877f1f
commit 6687311f9a
10 changed files with 34 additions and 10 deletions

View File

@@ -1,7 +1,7 @@
// @ts-check
import { defineConfig } from 'astro/config'
import sitemap from '@astrojs/sitemap';
import sitemap from '@astrojs/sitemap'
// https://astro.build/config

View File

@@ -15,9 +15,6 @@
"lightningcss": "^1.29.1"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"sharp"
]
"onlyBuiltDependencies": ["esbuild", "sharp"]
}
}

View File

@@ -1,7 +1,7 @@
---
const { frontmatter } = Astro.props || {}
const { title } = frontmatter || Astro.props
const canonicalURL = new URL(Astro.url.pathname, Astro.site);
const canonicalURL = new URL(Astro.url.pathname, Astro.site)
import '../styles/_style.css'
---