mirror of
https://github.com/facebook/docusaurus.git
synced 2025-04-29 02:08:36 +02:00
Co-authored-by: Sébastien Lorber <slorber@users.noreply.github.com> Co-authored-by: sebastienlorber <lorber.sebastien@gmail.com>
31 lines
855 B
TOML
31 lines
855 B
TOML
|
|
# Note: this file's config overrides the Netlify UI admin config
|
|
|
|
# /!\ due to using a monorepo it can be a bit messy to configure Netlify
|
|
# See also https://github.com/netlify/build/issues/2483
|
|
|
|
[build]
|
|
command = "yarn --cwd .. build:packages && yarn build"
|
|
publish = "website/build"
|
|
|
|
[build.environment]
|
|
NETLIFY_USE_YARN = "true"
|
|
YARN_VERSION = "1.22.19"
|
|
NODE_VERSION = "18"
|
|
NODE_OPTIONS = "--max_old_space_size=8192"
|
|
|
|
[context.production]
|
|
command = "yarn --cwd .. build:packages && yarn netlify:build:production"
|
|
|
|
[context.branch-deploy]
|
|
command = "yarn --cwd .. build:packages && yarn netlify:build:branchDeploy"
|
|
|
|
[context.deploy-preview]
|
|
command = "yarn --cwd .. build:packages && yarn netlify:build:deployPreview"
|
|
|
|
[[plugins]]
|
|
package = "netlify-plugin-cache"
|
|
[plugins.inputs]
|
|
paths = [
|
|
"node_modules/.cache/webpack",
|
|
]
|