From f2d33efc7a47206ba19bedfd511a108d5f69fb9c Mon Sep 17 00:00:00 2001 From: Ainsley Date: Fri, 24 Oct 2025 19:18:08 +0100 Subject: [PATCH 1/2] fix: Scripts --- docs/package.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/package.json b/docs/package.json index 3a1d8c6b..656f7c30 100644 --- a/docs/package.json +++ b/docs/package.json @@ -5,10 +5,10 @@ "main": "index.js", "scripts": { "test": "echo \"Error: no test specified\" && exit 1", - "docs:dev": "vitepress dev", - "docs:build": "vitepress build", - "docs:preview": "vitepress preview", - "docs:concat": "repopack --include \"**/*.md\" --ignore \"combined.md\" --style markdown -o combined.md" + "dev": "vitepress dev", + "build": "vitepress build", + "preview": "vitepress preview", + "concat": "repopack --include \"**/*.md\" --ignore \"combined.md\" --style markdown -o combined.md" }, "keywords": [], "author": "", From 3fd28e43595d193000a4ef5dc13a032939bf5b22 Mon Sep 17 00:00:00 2001 From: Ainsley Date: Fri, 24 Oct 2025 19:18:54 +0100 Subject: [PATCH 2/2] feat: Adding vercel.json --- docs/vercel.json | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 docs/vercel.json diff --git a/docs/vercel.json b/docs/vercel.json new file mode 100644 index 00000000..8f25531a --- /dev/null +++ b/docs/vercel.json @@ -0,0 +1,10 @@ +{ + "version": 2, + "builds": [ + { + "src": "package.json", + "use": "@vercel/static-build", + "config": { "distDir": ".vitepress/dist" } + } + ] +} \ No newline at end of file