Files
NianAIGC/next.config.ts
2026-05-29 15:54:13 +08:00

20 lines
397 B
TypeScript

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