Fixed nextconfig for docker usage

This commit is contained in:
2025-10-06 20:01:51 +02:00
parent 74cf509397
commit 78ac9d4149

View File

@@ -1,24 +1,25 @@
import type { NextConfig } from "next"; import type { NextConfig } from "next";
const nextConfig: NextConfig = { const nextConfig: NextConfig = {
output: "standalone",
experimental: { experimental: {
serverActions: { serverActions: {
bodySizeLimit: '70mb', bodySizeLimit: "10gb",
}, },
}, },
images: { images: {
remotePatterns: [ remotePatterns: [
{ {
protocol: 'https', protocol: "https",
hostname: 'upload.wikimedia.org', hostname: "upload.wikimedia.org",
port: '', port: "",
pathname: '/wikipedia/commons/**', pathname: "/wikipedia/commons/**",
}, },
{ {
protocol: 'https', protocol: "https",
hostname: 'static.vecteezy.com', hostname: "static.vecteezy.com",
port: '', port: "",
pathname: '/**', pathname: "/**",
}, },
], ],
}, },