init(Docs): setup docs site with Fumapress and Waku

This commit is contained in:
Prad Nukala
2026-07-12 12:14:51 -04:00
parent faa95b2e8b
commit 8f950111b5
12 changed files with 1704 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
import { defineConfig } from "waku/config";
import tailwindcss from "@tailwindcss/vite";
import press from "fumapress/vite";
import mdx from "fumadocs-mdx/vite";
// Config file for Waku & Vite
export default defineConfig({
vite: {
plugins: [press(), mdx(), tailwindcss()],
},
});