planpost-offer-landing/next.config.ts
2025-09-29 12:36:31 +06:00

23 lines
438 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
images: {
remotePatterns: [
{
protocol: "https",
hostname: "api.dicebear.com",
port: "",
pathname: "/**",
},
{
protocol: "https",
hostname: "static.wikia.nocookie.net",
port: "",
pathname: "/**",
},
],
},
};
export default nextConfig;