import type { NextConfig } from "next"; const nextConfig: NextConfig = { serverExternalPackages: ["adm-zip"], compress: true, images: { remotePatterns: [ { protocol: "https", hostname: "mc-heads.net" }, { protocol: "https", hostname: "cdn.modrinth.com" }, ], }, experimental: { serverActions: { bodySizeLimit: "100mb", }, }, }; export default nextConfig;