From cdc69792f97bdc383c37d7d1e1e1d8c50de8d987 Mon Sep 17 00:00:00 2001 From: raph_5 <45399899+raph5@users.noreply.github.com> Date: Thu, 2 Sep 2021 00:03:25 +0200 Subject: [PATCH] Debug component importation (#1289) with import { Debug } from 'astro/debug' : Debug = undefined Error: Unable to render Debug because it is undefined! Did you forget to import the component or is it possible there is a typo? --- docs/src/pages/reference/builtin-components.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/pages/reference/builtin-components.md b/docs/src/pages/reference/builtin-components.md index 31a174727..3db33e0db 100644 --- a/docs/src/pages/reference/builtin-components.md +++ b/docs/src/pages/reference/builtin-components.md @@ -37,7 +37,7 @@ See the [list of languages supported by Prism](https://prismjs.com/#supported-la ```astro --- -import { Debug } from 'astro/debug'; +import Debug from 'astro/debug'; const serverObject = { a: 0, b: "string",