Files
wehub-resource-sync 221778fa98
rowboat / apps/x Vitest suites (push) Has been cancelled
rowboat / apps/x Electron package smoke test (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 13:33:34 +08:00

13 lines
306 B
TypeScript

import type { NextConfig } from "next";
import path from "path";
const nextConfig: NextConfig = {
output: "export",
turbopack: {
// Keep Turbopack scoped to this app instead of inferring a parent workspace root.
root: __dirname || path.join(process.cwd()),
},
};
export default nextConfig;