Skip to content

Commit 85f5f35

Browse files
committed
Fix sitemap.xml of website and add it to robots.txt
1 parent 9310427 commit 85f5f35

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

website/adapters/vercel-edge/vite.config.ts

+6-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,12 @@ export default extendConfig(baseConfig, () => {
1616
outDir: '.vercel/output/functions/_qwik-city.func',
1717
},
1818
plugins: [
19-
vercelEdgeAdapter(),
19+
vercelEdgeAdapter({
20+
ssg: {
21+
include: [],
22+
sitemapOutFile: null,
23+
},
24+
}),
2025
viteStaticCopy({
2126
targets: [
2227
{

website/public/robots.txt

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
User-agent: *
2-
Disallow:
2+
Disallow:
3+
4+
Sitemap: https://valibot.dev/sitemap.xml

0 commit comments

Comments
 (0)