From 42b5bd9af4f00a1f01194398cd5afb2ccef08450 Mon Sep 17 00:00:00 2001 From: Daniel Tschinder <231804+danez@users.noreply.github.com> Date: Thu, 6 Oct 2022 17:00:30 +0200 Subject: [PATCH] chore: display name can be added to edge functions --- packages/runtime/src/helpers/edge.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/runtime/src/helpers/edge.ts b/packages/runtime/src/helpers/edge.ts index ce2b381a4d..f17a776f16 100644 --- a/packages/runtime/src/helpers/edge.ts +++ b/packages/runtime/src/helpers/edge.ts @@ -43,10 +43,12 @@ export interface FunctionManifest { functions: Array< | { function: string + name?: string path: string } | { function: string + name?: string pattern: string } >