import type { NextConfig } from "next"; const nextConfig: NextConfig = { turbopack: { root: process.cwd(), }, images: { remotePatterns: [ { protocol: 'https', hostname: '**', }, ], // Allow local file system images via next/image unoptimized: true, }, }; export default nextConfig;