19 lines
373 B
TypeScript
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;
|