/** * Single source of truth for play bundle/compile size limits. * * Kept in a dependency-free leaf module (no esbuild, no Node-only imports) so * both the bundler (`./index.ts`) and the limits documentation generator * (`scripts/generate-limits-docs.ts`) can import the numbers without pulling in * the compile toolchain. Do not restate these values in docs — the public page * is generated from here. */ /** Absolute hard ceiling for a compiled Play bundle. */ export const MAX_PLAY_BUNDLE_BYTES = 30 * 1024 * 1024;