import type { NextConfig } from "next"; const nextConfig: NextConfig = { turbopack: { root: process.cwd(), }, images: { unoptimized: true, remotePatterns: [ { protocol: "http", hostname: "127.0.0.1", port: "5264", pathname: "/**", }, { protocol: "http", hostname: "localhost", port: "5264", pathname: "/**", }, ], }, }; export default nextConfig;