9 lines
239 B
TypeScript
9 lines
239 B
TypeScript
import type { NextConfig } from "next";
|
|
const nextConfig: NextConfig = {
|
|
images: {
|
|
formats: ["image/avif", "image/webp"],
|
|
remotePatterns: [{ protocol: "https", hostname: "netrunner-vpn.com" }],
|
|
},
|
|
};
|
|
export default nextConfig;
|