import type { NextConfig } from "next";

const nextConfig: NextConfig = {
  serverExternalPackages: ["exceljs", "pg"],
  experimental: {
    serverActions: {
      // Curriculum / student workbooks are small, but keep headroom for XLSX uploads.
      bodySizeLimit: "12mb",
    },
  },
};

export default nextConfig;
