chore(config): restructure workspaces and scripts for apps layout

This commit is contained in:
Prad Nukala
2026-08-25 11:19:31 -04:00
parent 10d133f005
commit cc6c2da859
5 changed files with 393 additions and 66 deletions
+13
View File
@@ -0,0 +1,13 @@
import { defineConfig } from "blume";
export default defineConfig({
title: "Leetcode",
description: "Documentation for LeetCode solutions",
deployment: {
site: "https://prdlk.github.io",
base: "/leetcode",
},
content: {
root: "content",
},
});
+15
View File
@@ -0,0 +1,15 @@
{
"name": "docs",
"private": true,
"type": "module",
"scripts": {
"dev": "blume dev",
"build": "blume build",
"doctor": "blume doctor"
},
"dependencies": {
"blume": "^1.5.1",
"react": "^19.2.8",
"react-dom": "^19.2.8"
}
}