We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9fc2954 commit 68d5fb7Copy full SHA for 68d5fb7
docs/netlify.toml
@@ -3,13 +3,13 @@
3
NODE_OPTIONS = "--max_old_space_size=4096"
4
5
[build]
6
- publish = "dist"
7
- command = "pnpm run build"
+ publish = "docs/dist"
+ command = "pnpm run docs:build"
8
9
[functions]
10
node_bundler = "esbuild"
11
12
[[redirects]]
13
from = "/*"
14
to = "/index.html"
15
- status = 200
+ status = 200
package.json
@@ -38,6 +38,8 @@
38
"build": "unbuild",
39
"stub": "unbuild --stub",
40
"start": "esno src/index.ts",
41
+ "docs:dev": "pnpm dev --filter docs",
42
+ "docs:build": "pnpm build --filter docs",
43
"test": "vitest",
44
"coverage": "vitest run --coverage",
45
"release": "pnpm build && bumpp && npm publish",
0 commit comments