29 lines
569 B
TOML
29 lines
569 B
TOML
[[redirects]]
|
|
from = "/*"
|
|
to = "/index.html"
|
|
status = 200
|
|
|
|
[build]
|
|
publish = "."
|
|
command = "echo 'No build needed - static site'"
|
|
|
|
[[headers]]
|
|
for = "/*"
|
|
[headers.values]
|
|
Cache-Control = "public, max-age=0, must-revalidate"
|
|
|
|
[[headers]]
|
|
for = "/BD/*"
|
|
[headers.values]
|
|
Cache-Control = "public, max-age=31536000, immutable"
|
|
|
|
[[headers]]
|
|
for = "/*.css"
|
|
[headers.values]
|
|
Cache-Control = "public, max-age=31536000, immutable"
|
|
|
|
[[headers]]
|
|
for = "/*.js"
|
|
[headers.values]
|
|
Cache-Control = "public, max-age=31536000, immutable"
|