15 lines
311 B
TypeScript
15 lines
311 B
TypeScript
import type { NextConfig } from "next";
|
|
import path from "node:path";
|
|
import { fileURLToPath } from "node:url";
|
|
|
|
const projectRoot = path.dirname(fileURLToPath(import.meta.url));
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: "standalone",
|
|
turbopack: {
|
|
root: projectRoot,
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|