feat(config): add blume config file and remove waku config

This commit is contained in:
Prad Nukala
2026-07-14 11:07:13 -04:00
parent a0f5264106
commit a7f9fc28e0
2 changed files with 6 additions and 11 deletions
+6
View File
@@ -0,0 +1,6 @@
import { defineConfig } from "blume";
export default defineConfig({
title: "Docs",
description: "Documentation powered by Blume.",
});
-11
View File
@@ -1,11 +0,0 @@
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()],
},
});