sunnymh/manga-site/next.config.ts

20 lines
349 B
TypeScript

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