snipette-gridsome/netlify.toml
Hippo 60fd5718d6 Add redirect for stray Ghost images
Some of them weren't getting converted..so
2021-08-19 17:40:00 +05:30

56 lines
878 B
TOML

[build]
publish = "dist"
command = "gridsome build"
[[headers]]
for = "/"
[headers.values]
cache-control = '''
public,
max-age=0,
must-revalidate'''
[[headers]]
for = "*/"
[headers.values]
cache-control = '''
public,
max-age=0,
must-revalidate'''
[[headers]]
for = "*.htm"
[headers.values]
cache-control = '''
public,
max-age=0,
must-revalidate'''
[[headers]]
for = "*.json"
[headers.values]
control = '''
public,
max-age=0,
must-revalidate'''
[[redirects]]
from = "/rss"
to = "/feed.xml"
status = 301
[[redirects]]
from = "/webinar-jan-2020"
to = "/webinar-jan-2021"
STATUS = 301
[[redirects]]
from = "/author/thuan-sarzynski"
to = "/author/thuansarzynski/"
STATUS = 301
[[redirects]]
from = "/content/images/*"
to = "//media.snipettemag.com/:splat"
status = 302