From 73fadd7d936d9cf6b9846d410aaa3d5532c93804 Mon Sep 17 00:00:00 2001 From: Alicia Sykes Date: Thu, 19 Aug 2021 20:41:43 +0100 Subject: [PATCH] :hammer: Adds base path and headers to Netlify config --- netlify.toml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/netlify.toml b/netlify.toml index 9f61f824..a0bf50ec 100644 --- a/netlify.toml +++ b/netlify.toml @@ -4,6 +4,7 @@ # Essential site config [build] + base = "/" command = "yarn build" publish = "dist" @@ -13,3 +14,10 @@ STATUSKIT_COMPANY_LOGO = "https://raw.githubusercontent.com/Lissy93/dashy/master/docs/assets/logo.png" STATUSKIT_SUPPORT_CONTACT_LINK = "https://dashy.to" STATUSKIT_RESOURCES_LINK = "https://github.com/Lissy93/dashy/tree/master/docs" + +# Set any security headers here +[[headers]] + for = "/*" + [headers.values] + # Uncomment to enable Netlify user control. You must have a paid plan. + # Basic-Auth = "someuser:somepassword anotheruser:anotherpassword" \ No newline at end of file