From 896123eb5f0febe74a76f82c02a959a10eb0b736 Mon Sep 17 00:00:00 2001 From: Prad Nukala Date: Thu, 13 Aug 2026 19:52:41 -0400 Subject: [PATCH] feat(config): add waku configuration for docs --- docs/waku.config.ts | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 docs/waku.config.ts diff --git a/docs/waku.config.ts b/docs/waku.config.ts new file mode 100644 index 0000000..5dfd77f --- /dev/null +++ b/docs/waku.config.ts @@ -0,0 +1,15 @@ +import { defineConfig } from 'waku/config'; +import { fumadocsMdx } from 'fumadocs-mdx/vite'; +import tailwindcss from '@tailwindcss/vite'; + +export default defineConfig({ + unstable_adapter: 'waku/adapters/cloudflare', + vite: { + resolve: { + tsconfigPaths: true, + dedupe: ['waku'], + }, + + plugins: [tailwindcss(), fumadocsMdx()], + }, +});