Skip to content

Commit 6dd2f1c

Browse files
committed
feat: templatize a lot of the components and configure with a YAMl file.
1 parent 873bb83 commit 6dd2f1c

13 files changed

Lines changed: 3531 additions & 194 deletions

astro.config.mjs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,14 @@
11
import tailwind from "@astrojs/tailwind";
22
import icon from "astro-icon";
33
import { defineConfig } from "astro/config";
4+
import ViteYaml from '@modyfi/vite-plugin-yaml';
5+
46

57
// https://astro.build/config
68
export default defineConfig({
79
site: "https://astro-moon-landing.netlify.app/",
810
integrations: [tailwind(), icon()],
11+
vite: {
12+
plugins: [ViteYaml()]
13+
}
914
});

0 commit comments

Comments
 (0)