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