diff options
| author | Yuval Adam <_@yuv.al> | 2025-06-15 13:44:39 +0200 |
|---|---|---|
| committer | Yuval Adam <_@yuv.al> | 2025-06-15 13:44:39 +0200 |
| commit | dd100d4c821aae71f4a43b10843c74f14480bbc0 (patch) | |
| tree | 6739853a863b26d0a5896796efeb43e27b219586 /astro.config.mjs | |
| parent | 2e0755cc68e14bda95abe9472754ae5f4e760a04 (diff) | |
| parent | abee8fa7e82e66765ca8b513f9dc1a7bac814779 (diff) | |
Merge remote-tracking branch 'v2/main'
Diffstat (limited to 'astro.config.mjs')
| -rw-r--r-- | astro.config.mjs | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/astro.config.mjs b/astro.config.mjs new file mode 100644 index 0000000..0f737ef --- /dev/null +++ b/astro.config.mjs @@ -0,0 +1,19 @@ +// @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 |
