import { dirname } from "path" import { fileURLToPath } from "url" const __dirname = dirname(fileURLToPath(import.meta.url)) /** @type {import('next').NextConfig} */ const nextConfig = { output: 'standalone', outputFileTracingRoot: __dirname, images: { unoptimized: true, }, } export default nextConfig