import { NextConfig } from "next"; import createNextIntlPlugin from "next-intl/plugin"; const nextConfig: NextConfig = { output: "standalone", images: { remotePatterns: [ { protocol: "https", hostname: "**", }, { protocol: "http", hostname: "**", }, ], }, serverExternalPackages: [], experimental: { serverActions: { bodySizeLimit: "1pb", }, }, }; const withNextIntl = createNextIntlPlugin(); export default withNextIntl(nextConfig);