import type { NextConfig } from "next"; const nextConfig: NextConfig = { /* config options here */ basePath: "/ipv6", output: "standalone", async redirects() { return [ { source: "/", destination: "/ipv6", basePath: false, permanent: false, }, ]; }, images: { remotePatterns: [ { protocol: 'https', hostname: 'storage.googleapis.com', pathname: '/**', }, { protocol: "http", hostname: "localhost", port: "3001", pathname: "/**", }, { protocol: "http", hostname: "127.0.0.1", port: "3001", pathname: "/**", }, { protocol: "https", hostname: "lh3.googleusercontent.com", pathname: "/**", }, ], }, }; export default nextConfig;