summaryrefslogtreecommitdiff
path: root/examples/with-markdown
diff options
context:
space:
mode:
authorGravatar Peter Singh <drgaud@hotmail.com> 2021-09-01 02:09:16 +0100
committerGravatar GitHub <noreply@github.com> 2021-08-31 18:09:16 -0700
commitb22755d59e1e1530dc6da0daca976b82fa381a4a (patch)
tree09e99cd822d9e233bb960e9240de26539e0de7e5 /examples/with-markdown
parent66734b75f1e50c47515e5bf1650c8eeb1615ef70 (diff)
downloadastro-b22755d59e1e1530dc6da0daca976b82fa381a4a.tar.gz
astro-b22755d59e1e1530dc6da0daca976b82fa381a4a.tar.zst
astro-b22755d59e1e1530dc6da0daca976b82fa381a4a.zip
Checked the astro configs for the templates, (#1282)
* Checked the astro configs for the templates, * Update astro.config.mjs * Update package.json Co-authored-by: Fred K. Schott <fkschott@gmail.com>
Diffstat (limited to 'examples/with-markdown')
-rw-r--r--examples/with-markdown/astro.config.mjs13
1 files changed, 13 insertions, 0 deletions
diff --git a/examples/with-markdown/astro.config.mjs b/examples/with-markdown/astro.config.mjs
new file mode 100644
index 000000000..dc1697323
--- /dev/null
+++ b/examples/with-markdown/astro.config.mjs
@@ -0,0 +1,13 @@
+// Full Astro Configuration API Documentation:
+// https://docs.astro.build/reference/configuration-reference
+
+// @type-check enabled!
+// VSCode and other TypeScript-enabled text editors will provide auto-completion,
+// helpful tooltips, and warnings if your exported object is invalid.
+// You can disable this by removing "@ts-check" and `@type` comments below.
+
+// @ts-check
+export default /** @type {import('astro').AstroUserConfig} */ ({
+ // Set "renderers" to "[]" to disable all default, builtin component support.
+ // renderers: [],
+});