11 lines
321 B
TypeScript
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;
|