import type { NextConfig } from "next"; import path from "node:path"; const nextConfig: NextConfig = { turbopack: { root: path.join(__dirname), }, images: { remotePatterns: [ { protocol: "https", hostname: "db.kovaksoft.com" }, { protocol: "https", hostname: "kovakyazilim.com" }, { protocol: "https", hostname: "**.kovaksoft.com" }, ], }, }; export default nextConfig;