From f006b86fa5ad2509cef5f72069951c7ea0caf5c4 Mon Sep 17 00:00:00 2001 From: Melvin Valster Date: Sat, 27 Jul 2019 00:37:41 +0200 Subject: [PATCH] Try to make /images not redirect to index.html --- netlify.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/netlify.toml b/netlify.toml index 2281daf..aaacbdc 100644 --- a/netlify.toml +++ b/netlify.toml @@ -8,6 +8,10 @@ [headers.values] Cache-Control = "public, max-age=31536000" +[[redirects]] + from = "/images/*" + to = "/images/:splat" + [[redirects]] from = "/*" to = "/index.html"