Files
netrunner-landing/next.config.ts
T

8 lines
196 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
images: {
remotePatterns: [{ protocol: "https", hostname: "netrunner-vpn.com" }],
},
};
export default nextConfig;