Files
ipv6-sims/next.config.ts
T
2026-05-14 00:00:35 +00:00

32 lines
601 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
basePath: '/ipv6',
trailingSlash: true,
output: "standalone",
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: "/**",
}
],
},
};
export default nextConfig;