diff options
author | 2023-07-07 09:22:26 -0400 | |
---|---|---|
committer | 2023-07-07 09:22:26 -0400 | |
commit | c135633bf6a84e751249920cba9009f0e394e29a (patch) | |
tree | 2a721fe8fcd4fdf813199b0559c6726da6ba93bb /packages/integrations/markdoc/src | |
parent | 6f1c4ea388bf03228e3b6e86997122f07233d02b (diff) | |
download | astro-c135633bf6a84e751249920cba9009f0e394e29a.tar.gz astro-c135633bf6a84e751249920cba9009f0e394e29a.tar.zst astro-c135633bf6a84e751249920cba9009f0e394e29a.zip |
Fix: Markdoc v0.4.0 docs (#7593)
* docs: add docs link to markdoc error
* docs: add named exports guide to README
* chore: changeset
* edit: no like so
Co-authored-by: Chris Swithinbank <swithinbank@gmail.com>
* edit: exposed as named exports
Co-authored-by: Chris Swithinbank <swithinbank@gmail.com>
---------
Co-authored-by: bholmesdev <bholmesdev@gmail.com>
Co-authored-by: Chris Swithinbank <swithinbank@gmail.com>
Diffstat (limited to 'packages/integrations/markdoc/src')
-rw-r--r-- | packages/integrations/markdoc/src/load-config.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/integrations/markdoc/src/load-config.ts b/packages/integrations/markdoc/src/load-config.ts index 23a397e47..723516ce7 100644 --- a/packages/integrations/markdoc/src/load-config.ts +++ b/packages/integrations/markdoc/src/load-config.ts @@ -77,7 +77,7 @@ async function bundleConfigFile({ // This swallows the `hint` and blows up the stacktrace. markdocError = new MarkdocError({ message: '`.astro` files are no longer supported in the Markdoc config.', - hint: 'Use the `component()` utility to specify a component path instead.', + hint: 'Use the `component()` utility to specify a component path instead. See https://docs.astro.build/en/guides/integrations-guide/markdoc/', }); return { // Stub with an unused default export. |