uwuzu_light_client/next.config.ts

21 lines
334 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
images: {
remotePatterns: [
{
protocol: "https",
hostname: "**",
pathname: "**",
},
{
protocol: "http",
hostname: "**",
pathname: "**",
},
],
},
};
export default nextConfig;