Unable to deploy Edge Function
If you're having trouble deploying an Edge Function, follow these steps to diagnose and resolve the issue.
Diagnose the issue#
- Check function syntax: Run
deno checkon your function files locally - Review dependencies: Verify all imports are accessible and compatible with Deno
- Examine bundle size: Large functions may fail to deploy
# Check for syntax errorsdeno check ./supabase/functions/your-function/index.ts# Deploy with verbose outputsupabase functions deploy your-function --debugCommon causes#
- Syntax errors: TypeScript or JavaScript syntax issues in your function code
- Invalid imports: Importing modules that don't exist or aren't compatible with Deno
- Large bundle size: Functions have a maximum size of 20MB when bundled locally through the CLI, or 5MB when bundled server-side, for example through the Management API or Dashboard. See Bundle size issues for more details
- Network issues: Problems reaching the Supabase API during deployment
Before opening a support ticket#
Make sure you're using the latest version of the Supabase CLI:
supabase --versionIf it's out of date, upgrade using whichever package manager installed the CLI, for example brew upgrade supabase, npm update supabase --save-dev, or scoop update supabase.
If these steps don't resolve the issue, open a support ticket via the Supabase Dashboard and include all output from the diagnostic commands.