mirror of
https://github.com/DerTyp7/f1r3wave-website.git
synced 2025-10-29 13:02:09 +01:00
Fixed nextconfig for docker usage
This commit is contained in:
@@ -1,27 +1,28 @@
|
|||||||
import type { NextConfig } from "next";
|
import type { NextConfig } from "next";
|
||||||
|
|
||||||
const nextConfig: NextConfig = {
|
const nextConfig: NextConfig = {
|
||||||
experimental: {
|
output: "standalone",
|
||||||
serverActions: {
|
experimental: {
|
||||||
bodySizeLimit: '70mb',
|
serverActions: {
|
||||||
},
|
bodySizeLimit: "10gb",
|
||||||
},
|
},
|
||||||
images: {
|
},
|
||||||
remotePatterns: [
|
images: {
|
||||||
{
|
remotePatterns: [
|
||||||
protocol: 'https',
|
{
|
||||||
hostname: 'upload.wikimedia.org',
|
protocol: "https",
|
||||||
port: '',
|
hostname: "upload.wikimedia.org",
|
||||||
pathname: '/wikipedia/commons/**',
|
port: "",
|
||||||
},
|
pathname: "/wikipedia/commons/**",
|
||||||
{
|
},
|
||||||
protocol: 'https',
|
{
|
||||||
hostname: 'static.vecteezy.com',
|
protocol: "https",
|
||||||
port: '',
|
hostname: "static.vecteezy.com",
|
||||||
pathname: '/**',
|
port: "",
|
||||||
},
|
pathname: "/**",
|
||||||
],
|
},
|
||||||
},
|
],
|
||||||
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
export default nextConfig;
|
export default nextConfig;
|
||||||
|
|||||||
Reference in New Issue
Block a user