1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21# Settings in the [build] context are global and are applied to all contexts
# unless otherwise overridden by more specific contexts.
#
# Defaulting to the settings for the `main` branch
[build]
base = "/"
command = "pnpm docs:build"
publish = "/docs/.vitepress/dist"
environment = { NODE_VERSION = "20.14.0" }
# ##############################
# 'v7' branch
# ##############################
# 'v7' branch context
[context.v7]
base = "/"
command = "yarn docs:build"
publish = "docs/.vitepress/dist"
environment = { NODE_VERSION = "18.17.1", YARN_FLAGS="--frozen-lockfile --ignore-optional" }