mc-dashboard/next.config.ts

20 lines
403 B
TypeScript
Raw Normal View History

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;