/** @type {import('next').NextConfig} */ import path from "path"; import { fileURLToPath } from "url"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const nextConfig = { output: "standalone", images: { remotePatterns: [ { protocol: "https", hostname: "**", }, { protocol: "http", hostname: "**", }, ], }, turbopack: { root: __dirname, }, }; export default nextConfig;