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": "", 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