We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent abe2187 commit 87b1807Copy full SHA for 87b1807
1 file changed
apps/site/app/api/site.json/route.ts
@@ -0,0 +1,7 @@
1
+import { NextResponse } from 'next/server';
2
+
3
+import { siteConfig } from '#site/next.json.mjs';
4
5
+export const GET = () => NextResponse.json(siteConfig);
6
7
+export const dynamic = 'force-static';
0 commit comments