Skip to content

Commit 32216c3

Browse files
hsnice16claude
andcommitted
Fix outputFileTracingIncludes key: "*" → "/*"
Next.js uses "/*" as the global-match key; "*" was silently ignored, so the DB never shipped with the previous deploy. Verified against Next.js 16 docs. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 0aa380b commit 32216c3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

next.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import type { NextConfig } from "next";
55
// serverless function bundle on Vercel and /api/repos returns stale data.
66
const config: NextConfig = {
77
outputFileTracingIncludes: {
8-
"*": ["./data/rank.db"],
8+
"/*": ["./data/rank.db"],
99
},
1010
};
1111

0 commit comments

Comments
 (0)