diff --git a/src/lib/edge-functions/registry.ts b/src/lib/edge-functions/registry.ts index c715702ba4d..3144a49117a 100644 --- a/src/lib/edge-functions/registry.ts +++ b/src/lib/edge-functions/registry.ts @@ -404,7 +404,9 @@ export class EdgeFunctionsRegistry { */ private processGraph(graph: ModuleGraph | undefined) { if (!graph) { - warn('Could not process edge functions dependency graph. Live reload will not be available.') + if (this.functions.length !== 0) { + warn('Could not process edge functions dependency graph. Live reload will not be available.') + } return }