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?
This commit is contained in:
parent
7f6c35f636
commit
cdc69792f9
1 changed files with 1 additions and 1 deletions
|
@ -37,7 +37,7 @@ See the [list of languages supported by Prism](https://prismjs.com/#supported-la
|
||||||
|
|
||||||
```astro
|
```astro
|
||||||
---
|
---
|
||||||
import { Debug } from 'astro/debug';
|
import Debug from 'astro/debug';
|
||||||
const serverObject = {
|
const serverObject = {
|
||||||
a: 0,
|
a: 0,
|
||||||
b: "string",
|
b: "string",
|
||||||
|
|
Loading…
Reference in a new issue