Files
NianAIGC/next.config.ts
2026-05-29 10:26:02 +08:00

19 lines
373 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
experimental: {
serverActions: {
bodySizeLimit: "12mb"
}
},
images: {
remotePatterns: [
{ protocol: "https", hostname: "**" },
{ protocol: "http", hostname: "127.0.0.1" },
{ protocol: "http", hostname: "localhost" }
]
}
};
export default nextConfig;