diff options
| author | Andrew Lee <alee14498@protonmail.com> | 2024-01-22 19:56:50 -0500 |
|---|---|---|
| committer | Andrew Lee <alee14498@protonmail.com> | 2024-01-22 20:53:41 -0500 |
| commit | 8fd6f1a2739b686092bbb5806666e63f283d6510 (patch) | |
| tree | e378cd080f8f6882e0282e9db6a6b0c48030049b /astro.config.mjs | |
| parent | 7604592b7a68fee231b63ff5123837e3eb1beaf8 (diff) | |
| download | personal-website-8fd6f1a2739b686092bbb5806666e63f283d6510.tar.gz personal-website-8fd6f1a2739b686092bbb5806666e63f283d6510.tar.bz2 personal-website-8fd6f1a2739b686092bbb5806666e63f283d6510.zip | |
Add Vue.JS for Navbar; Transitions; Getting started on projects
Diffstat (limited to 'astro.config.mjs')
| -rw-r--r-- | astro.config.mjs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/astro.config.mjs b/astro.config.mjs index 86e6192..410bc3e 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -1,11 +1,12 @@ import { defineConfig } from 'astro/config'; import icon from "astro-icon"; +import vue from '@astrojs/vue'; import vercel from "@astrojs/vercel/serverless"; // https://astro.build/config export default defineConfig({ - integrations: [icon()], + integrations: [icon(), vue()], output: "server", adapter: vercel() }); |
