Files
cabrits-math/next.config.ts
2026-07-05 11:12:45 -04:00

11 lines
321 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
output: "standalone",
// Pin the workspace root to this project. A stray package-lock.json in the
// parent directory otherwise makes Turbopack infer the wrong root and crash.
turbopack: { root: __dirname },
};
export default nextConfig;