22 lines
373 B
TypeScript
22 lines
373 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: "standalone",
|
|
serverExternalPackages: ["sharp"],
|
|
experimental: {
|
|
serverActions: {
|
|
bodySizeLimit: "10mb",
|
|
},
|
|
},
|
|
images: {
|
|
remotePatterns: [
|
|
{
|
|
protocol: "https",
|
|
hostname: "rsocials.online",
|
|
},
|
|
],
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|