diff --git a/netlify.toml b/netlify.toml index 0256a635..53882d98 100644 --- a/netlify.toml +++ b/netlify.toml @@ -1,3 +1,23 @@ [build] publish = "build" -command = "yarn build" \ No newline at end of file +command = "yarn build" + +[[headers]] + for = "/*" + [headers.values] + Referrer-Policy = "same-origin" + X-Content-Type-Options = "nosniff" + X-Frame-Options = "DENY" + X-XSS-Protection = "1; mode=block" + Strict-Transport-Security = "max-age=63072000; includeSubDomains; preload" + Content-Security-Policy = ''' + default-src 'none', + child-src 'self' app.netlify.com, + script-src 'self' app.netlify.com netlify-cdp-loader.netlify.app, + connect-src 'self', + img-src 'self', + style-src 'self', + font-src 'self' ''' + + +