diff options
| author | Andrew Lee <alee14498@protonmail.com> | 2024-02-03 15:48:11 -0500 |
|---|---|---|
| committer | Andrew Lee <alee14498@protonmail.com> | 2024-02-03 15:58:10 -0500 |
| commit | 4c84e203859be34da582f51371adc6eeb370b518 (patch) | |
| tree | 2f0e43dfa49da41141277fb35881e9eff51c6adb /astro.config.mjs | |
| parent | 0077087a5179c2ffdec07ee38f3ffbbb01853dde (diff) | |
| download | personal-website-4c84e203859be34da582f51371adc6eeb370b518.tar.gz personal-website-4c84e203859be34da582f51371adc6eeb370b518.tar.bz2 personal-website-4c84e203859be34da582f51371adc6eeb370b518.zip | |
Navbar now uses preact instead
Diffstat (limited to 'astro.config.mjs')
| -rw-r--r-- | astro.config.mjs | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/astro.config.mjs b/astro.config.mjs index e7e5cf0..b538d31 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -1,17 +1,17 @@ -import {defineConfig, passthroughImageService} from 'astro/config'; +import { defineConfig, passthroughImageService } from 'astro/config'; import icon from "astro-icon"; - -import vue from '@astrojs/vue'; import vercel from "@astrojs/vercel/serverless"; +import preact from "@astrojs/preact"; + // https://astro.build/config export default defineConfig({ site: 'https://alee14.me', - integrations: [icon(), vue()], + integrations: [icon(), preact()], output: "server", adapter: vercel(), image: { - service: passthroughImageService(), + service: passthroughImageService() }, markdown: { shikiConfig: { @@ -24,7 +24,7 @@ export default defineConfig({ wrap: true, // Add custom transformers: https://shikiji.netlify.app/guide/transformers // Find common transformers: https://shikiji.netlify.app/packages/transformers - transformers: [], - }, - }, -}); + transformers: [] + } + } +});
\ No newline at end of file |
