13 lines
309 B
TypeScript
Executable File
13 lines
309 B
TypeScript
Executable File
import type { NextConfig } from "next";
|
|
import path from "node:path";
|
|
import { fileURLToPath } from "node:url";
|
|
|
|
const __filename = fileURLToPath(import.meta.url);
|
|
const __dirname = path.dirname(__filename);
|
|
|
|
const nextConfig: NextConfig = {
|
|
outputFileTracingRoot: __dirname,
|
|
};
|
|
|
|
export default nextConfig;
|