import type { NextConfig } from "next";

const nextConfig: NextConfig = {
  experimental: {
    serverActions: { bodySizeLimit: "8mb" }, // speaker photo uploads
  },
  /* config options here */
};

export default nextConfig;
