Files
f1r3wave-website/next.config.ts
2025-10-06 19:22:47 +02:00

28 lines
506 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
experimental: {
serverActions: {
bodySizeLimit: '70mb',
},
},
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'upload.wikimedia.org',
port: '',
pathname: '/wikipedia/commons/**',
},
{
protocol: 'https',
hostname: 'static.vecteezy.com',
port: '',
pathname: '/**',
},
],
},
};
export default nextConfig;