sunnymh-manga-site/next.config.ts
2026-03-25 22:20:37 +08:00

19 lines
314 B
TypeScript

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