43 lines
787 B
TOML
43 lines
787 B
TOML
[build]
|
|
publish = "public"
|
|
functions = "functions"
|
|
|
|
[build.environment]
|
|
NODE_VERSION = "16.16.0"
|
|
NPM_VERSION = "8.11.0"
|
|
|
|
[context.production]
|
|
command = "npm run build"
|
|
|
|
[context.deploy-preview]
|
|
command = "npm run build -- -b $DEPLOY_PRIME_URL"
|
|
|
|
[context.branch-deploy]
|
|
command = "npm run build -- -b $DEPLOY_PRIME_URL"
|
|
|
|
[context.next]
|
|
command = "npm run build"
|
|
|
|
[context.next.environment]
|
|
HUGO_ENV = "next"
|
|
|
|
[[plugins]]
|
|
package = "netlify-plugin-submit-sitemap"
|
|
|
|
[plugins.inputs]
|
|
baseUrl = "https://doks.netlify.app/"
|
|
sitemapPath = "/sitemap.xml"
|
|
ignorePeriod = 0
|
|
providers = [
|
|
"google",
|
|
"yandex"
|
|
]
|
|
|
|
[dev]
|
|
framework = "#custom"
|
|
command = "npm run start"
|
|
targetPort = 1313
|
|
port = 8888
|
|
publish = "public"
|
|
autoLaunch = false
|