diff options
author | 2021-09-02 00:03:25 +0200 | |
---|---|---|
committer | 2021-09-01 15:03:25 -0700 | |
commit | cdc69792f97bdc383c37d7d1e1e1d8c50de8d987 (patch) | |
tree | 98018f53a80ab25cbf4a012adf87effeeecf5cf4 /docs/src | |
parent | 7f6c35f6360e05b146b2f10624a43c03408e74e8 (diff) | |
download | astro-cdc69792f97bdc383c37d7d1e1e1d8c50de8d987.tar.gz astro-cdc69792f97bdc383c37d7d1e1e1d8c50de8d987.tar.zst astro-cdc69792f97bdc383c37d7d1e1e1d8c50de8d987.zip |
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?
Diffstat (limited to 'docs/src')
-rw-r--r-- | docs/src/pages/reference/builtin-components.md | 2 |
1 files changed, 1 insertions, 1 deletions
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", |