imnya.ng/next.config.ts
2024-12-05 18:37:33 +09:00

16 lines
283 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
images: {
remotePatterns: [
{
protocol: "https",
hostname: "f.imnyang.xyz",
port: "",
pathname: "/profile/**",
},
],
},
};
export default nextConfig;