rowboat/apps/rowboatx/next.config.ts

13 lines
306 B
TypeScript
Raw Normal View History

2025-12-10 23:48:19 +05:30
import type { NextConfig } from "next";
import path from "path";
2025-12-10 23:48:19 +05:30
const nextConfig: NextConfig = {
2025-12-23 18:26:32 +05:30
output: "export",
turbopack: {
// Keep Turbopack scoped to this app instead of inferring a parent workspace root.
root: __dirname || path.join(process.cwd()),
},
2025-12-10 23:48:19 +05:30
};
export default nextConfig;