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