diff options
author | 2021-05-27 13:54:38 -0400 | |
---|---|---|
committer | 2021-05-27 13:54:38 -0400 | |
commit | dd7cc798e04897ece8b280f9145cfa6789e8501e (patch) | |
tree | deca42114ab42c7202e24f66a07392edccf4bc89 /examples/astro-markdown/astro.config.mjs | |
parent | 3dc141b86840963b8a313178419b2a36306098c9 (diff) | |
download | astro-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.mjs | 3 |
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' }; |