popiart-server
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

12 lines
320 B

import path from "node:path";
import { fileURLToPath } from "node:url";
import type { NextConfig } from "next";
const configDir = path.dirname(fileURLToPath(import.meta.url));
const nextConfig: NextConfig = {
reactStrictMode: true,
outputFileTracingRoot: path.join(configDir, ".."),
};
export default nextConfig;