-
Notifications
You must be signed in to change notification settings - Fork 16
/
netlify.toml
44 lines (37 loc) · 928 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
[[redirects]]
from = "/storybook"
to = "https://pharos-storybooks.netlify.app/main/"
status = 200
force = true
[[redirects]]
from = "/storybook/*"
to = "https://pharos-storybooks.netlify.app/main/:splat"
status = 200
force = true
[[redirects]]
from = "/storybooks/wc"
to = "https://pharos-storybooks.netlify.app/wc/"
status = 200
force = true
[[redirects]]
from = "/storybooks/wc/*"
to = "https://pharos-storybooks.netlify.app/wc/:splat"
status = 200
force = true
[[redirects]]
from = "/storybooks/react"
to = "https://pharos-storybooks.netlify.app/react/"
status = 200
force = true
[[redirects]]
from = "/storybooks/react/*"
to = "https://pharos-storybooks.netlify.app/react/:splat"
status = 200
force = true
[[headers]]
for = "/*"
[headers.values]
Access-Control-Allow-Origin = "*"
X-Frame-Options = "SAMEORIGIN"
[build]
ignore = "bash ./build-ignore.sh"