Lumbridge Bench
CI / verify (push) Successful in 24s
CI / deploy (push) Failing after 1m14s

This commit is contained in:
Karti Tripathi
2026-08-04 00:44:07 -07:00
commit 006feee0f7
65 changed files with 13516 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
import path from "node:path";
import { fileURLToPath } from "node:url";
const siteDir = path.dirname(fileURLToPath(import.meta.url));
/** @type {import('next').NextConfig} */
const nextConfig = {
outputFileTracingRoot: path.join(siteDir, ".."),
outputFileTracingIncludes: {
// Score cards are read from the repo's results/ directory at build time.
// There is no database behind the leaderboard: the git history IS the
// record, so the site is a view over committed JSON.
"/**": ["../results/**"],
},
};
export default nextConfig;