12 lines
252 B
JavaScript
12 lines
252 B
JavaScript
import { dirname } from "node:path";
|
|
import { fileURLToPath } from "node:url";
|
|
|
|
const __dirname = dirname(fileURLToPath(import.meta.url));
|
|
|
|
const nextConfig = {
|
|
output: "standalone",
|
|
outputFileTracingRoot: __dirname,
|
|
};
|
|
|
|
export default nextConfig;
|