Files
wsa-website/next.config.ts

12 lines
196 B
TypeScript

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