-
Notifications
You must be signed in to change notification settings - Fork 1
/
netlify.toml
49 lines (46 loc) · 1.04 KB
/
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
46
47
48
49
[[redirects]]
from = "/*"
to = "/index.html"
status = 200
[context.main]
command = "yarn buildMaster"
[context.main.processing]
skip_processing = false
[context.main.processing.css]
bundle = true
minify = true
[context.main.processing.js]
bundle = true
minify = true
[context.main.processing.html]
pretty_urls = true
[context.main.processing.images]
compress = true
[context.master]
command = "yarn buildMaster"
[context.master.processing]
skip_processing = false
[context.master.processing.css]
bundle = true
minify = true
[context.master.processing.js]
bundle = true
minify = true
[context.master.processing.html]
pretty_urls = true
[context.master.processing.images]
compress = true
[context.develop]
command = "yarn buildMaster"
[context.develop.processing]
skip_processing = false
[context.develop.processing.css]
bundle = true
minify = true
[context.develop.processing.js]
bundle = true
minify = true
[context.develop.processing.html]
pretty_urls = true
[context.develop.processing.images]
compress = true