first commit

This commit is contained in:
2025-10-06 19:22:47 +02:00
commit aecc4cf549
75 changed files with 9303 additions and 0 deletions

27
next.config.ts Normal file
View File

@@ -0,0 +1,27 @@
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;