summaryrefslogtreecommitdiff
path: root/examples/astro-markdown/astro.config.mjs
diff options
context:
space:
mode:
authorGravatar Matthew Phillips <matthew@matthewphillips.info> 2021-05-27 13:54:38 -0400
committerGravatar GitHub <noreply@github.com> 2021-05-27 13:54:38 -0400
commitdd7cc798e04897ece8b280f9145cfa6789e8501e (patch)
treedeca42114ab42c7202e24f66a07392edccf4bc89 /examples/astro-markdown/astro.config.mjs
parent3dc141b86840963b8a313178419b2a36306098c9 (diff)
downloadastro-dd7cc798e04897ece8b280f9145cfa6789e8501e.tar.gz
astro-dd7cc798e04897ece8b280f9145cfa6789e8501e.tar.zst
astro-dd7cc798e04897ece8b280f9145cfa6789e8501e.zip
Fix codeblocks in markdown components (#264)
* Fix codeblocks in markdown components * Debugging * More debugging * remove extra debugging stuff
Diffstat (limited to '')
-rw-r--r--examples/astro-markdown/astro.config.mjs3
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/astro-markdown/astro.config.mjs b/examples/astro-markdown/astro.config.mjs
index e73531d1a..a66babaf3 100644
--- a/examples/astro-markdown/astro.config.mjs
+++ b/examples/astro-markdown/astro.config.mjs
@@ -2,5 +2,6 @@ export default {
extensions: {
'.jsx': 'react',
'.tsx': 'preact',
- }
+ },
+ public: './public'
};