diff options
| author | Pinapelz <yukais@pinapelz.com> | 2024-12-21 19:18:40 -0800 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2024-12-21 19:18:40 -0800 |
| commit | 8f9d96b60fe18e0b126022096505c1c693b51108 (patch) | |
| tree | 0fe14c9d0be93a780b5bc3da9b4ea60972fcab42 /astro.config.mjs | |
| parent | e19f06c1caf2ba57bbed09a212bb49ba97a815dd (diff) | |
feat: add ability to dynamically render markdown files in public dir
Diffstat (limited to 'astro.config.mjs')
| -rw-r--r-- | astro.config.mjs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/astro.config.mjs b/astro.config.mjs index 882e651..02feadc 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -1,4 +1,8 @@ import { defineConfig } from 'astro/config'; +import react from '@astrojs/react'; + // https://astro.build/config -export default defineConfig({}); +export default defineConfig({ + integrations: [react()] +});
\ No newline at end of file |
