We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bf0e4a2 commit 9860ea6Copy full SHA for 9860ea6
src/app/robots.ts
@@ -1,5 +1,7 @@
1
import { baseUrl } from "@/app/sitemap";
2
3
+export const dynamic = 'force-static';
4
+
5
export default function robots() {
6
return {
7
rules: [
src/app/sitemap.ts
@@ -1,6 +1,8 @@
import { getBlogPosts } from "@/app/blog/utils";
-export const baseUrl = "https:/localhost";
+export const baseUrl = "https://per0w.github.io/blog/";
+export const dynamic = 'force-static'
export default async function sitemap() {
8
const blogs = getBlogPosts().map((post) => ({
0 commit comments