File size: 440 Bytes
1e92f2d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | [build]
base = "website"
publish = "build"
command = "yarn build"
ignore = "git diff --quiet HEAD^ HEAD -- ./docs/ ."
[build.environment]
NODE_VERSION = "20"
NODE_OPTIONS = "--max_old_space_size=4096"
NETLIFY_USE_YARN = "true"
YARN_VERSION = "1.22.10"
[[plugins]]
package = "netlify-plugin-cache"
[plugins.inputs]
paths = [
"node_modules/.cache",
"website/node_modules/.cache",
".yarn/.cache"
]
|