diff options
| author | Yuval Adam <_@yuv.al> | 2025-05-08 21:31:00 +0200 |
|---|---|---|
| committer | Yuval Adam <_@yuv.al> | 2025-05-08 22:27:03 +0200 |
| commit | c8d6dc54e2ee44daa00b11c6300f4f0d6ef32186 (patch) | |
| tree | 0073da7bc68f5308610ed7d6d7bdc455ad4c6cf7 /astro.config.mjs | |
| parent | 7450fe585f1253bf30b9ccb7254019aafc5db088 (diff) | |
Initial migration to AstroJS
Diffstat (limited to 'astro.config.mjs')
| -rw-r--r-- | astro.config.mjs | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/astro.config.mjs b/astro.config.mjs new file mode 100644 index 0000000..a0f8daa --- /dev/null +++ b/astro.config.mjs @@ -0,0 +1,18 @@ +// @ts-check +import { defineConfig } from 'astro/config'; + +import tailwindcss from '@tailwindcss/vite'; + +import react from '@astrojs/react'; + +// https://astro.build/config +export default defineConfig({ + vite: { + plugins: [tailwindcss()] + }, + + integrations: [react()], + devToolbar: { + enabled: false + } +});
\ No newline at end of file |
