-
Notifications
You must be signed in to change notification settings - Fork 53
/
Copy pathnetlify.toml
45 lines (34 loc) · 1008 Bytes
/
netlify.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[build]
publish = "public"
command = "make prod-build"
base = "bertytech/"
ignore = "./ignore-build.sh"
[context.production.environment]
HUGO_VERSION = "0.91.2"
HUGO_ENV = "production"
HUGO_ENABLEGITINFO = "true"
GIT_LFS_ENABLED = "true"
[context.split1]
command = 'make prod-build HUGO_OPTS="--enableGitInfo"'
[context.split1.environment]
HUGO_VERSION = "0.91.2"
HUGO_ENV = "production"
GIT_LFS_ENABLED = "true"
[context.deploy-preview]
command = 'make prod-build HUGO_OPTS="-b $DEPLOY_PRIME_URL --enableGitInfo -v"'
[context.deploy-preview.environment]
HUGO_VERSION = "0.91.2"
GIT_LFS_ENABLED = "true"
[context.branch-deploy]
command = 'make prod-build HUGO_OPTS="-b $DEPLOY_PRIME_URL -v"'
[context.branch-deploy.environment]
HUGO_VERSION = "0.91.2"
GIT_LFS_ENABLED = "true"
[context.next.environment]
HUGO_ENABLEGITINFO = "true"
[[plugins]]
package = "/plugins/verify-pages"
[[plugins]]
package = "netlify-plugin-submit-sitemap"
[[plugins]]
package = "netlify-plugin-hugo-cache-resources"