summaryrefslogtreecommitdiff
path: root/examples/snowpack/snowpack.config.js
diff options
context:
space:
mode:
authorGravatar Matthew Phillips <matthew@matthewphillips.info> 2021-04-08 15:17:00 -0400
committerGravatar GitHub <noreply@github.com> 2021-04-08 15:17:00 -0400
commit72ae661e9e6f7b32adf9e6a47cdc6352dfa2a27d (patch)
tree3bc185025ee58360d05e509eb0873d796e9cb7a5 /examples/snowpack/snowpack.config.js
parent2b346d7a4c08b2c6ab6276751a8a984ba050656f (diff)
downloadastro-72ae661e9e6f7b32adf9e6a47cdc6352dfa2a27d.tar.gz
astro-72ae661e9e6f7b32adf9e6a47cdc6352dfa2a27d.tar.zst
astro-72ae661e9e6f7b32adf9e6a47cdc6352dfa2a27d.zip
Add support for syntax highlighting of code blocks (#65)
* Add support for syntax highlighting of code blocks * Escape usage of backtick strings * Add workspace root for snowpack * Use prismjs/components as an external module
Diffstat (limited to 'examples/snowpack/snowpack.config.js')
-rw-r--r--examples/snowpack/snowpack.config.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/examples/snowpack/snowpack.config.js b/examples/snowpack/snowpack.config.js
new file mode 100644
index 000000000..5a800b10f
--- /dev/null
+++ b/examples/snowpack/snowpack.config.js
@@ -0,0 +1,3 @@
+module.exports = {
+ workspaceRoot: '../../'
+};