this repo has no description
1[build] 2 command = "zola build" 3 publish = "public/" 4 5[context.deploy-preview] 6 command = "zola build --drafts --base-url $DEPLOY_PRIME_URL" 7 8[[headers]] 9 for = "/*" 10 [headers.values] 11 # Disable Google cohort tracking 12 Permission-Policy = "interest-cohort=()" 13 # Disallow showing the website in frames 14 X-Frame-Options = "DENY" 15 X-XSS-Protection = "1; mode=block" 16 X-Content-Type-Options = "nosniff" 17 Content-Security-Policy = "default-src 'self'; script-src 'self' https://plausible.io; connect-src https://plausible.io; img-src https:" 18 Permissions-Policy = "accelerometer=(), ambient-light-sensor=(), autoplay=(), battery=(), camera=(), cross-origin-isolated=(), display-capture=(), document-domain=(), encrypted-media=(), execution-while-not-rendered=(), execution-while-out-of-viewport=(), fullscreen=(), geolocation=(), gyroscope=(), keyboard-map=(), magnetometer=(), microphone=(), midi=(), navigation-override=(), payment=(), picture-in-picture=(), publickey-credentials-get=(), screen-wake-lock=(), sync-xhr=(), usb=(), web-share=(), xr-spatial-tracking=(), clipboard-read=(), clipboard-write=(), gamepad=(), speaker-selection=()" 19 Referrer-Policy = "no-referrer-when-downgrade" 20 21[[headers]] 22 for = "/.well-known/webfinger" 23 [headers.values] 24 Content-Type = "application/jrd+json; charset=utf-8" 25 26[[redirects]] 27 from = "/post" 28 to = "/" 29 force = true 30 31[[redirects]] 32 from = "/.well-known/webfinger" 33 to = "https://fosstodon.org/.well-known/webfinger?resource=acct:hauleth@fosstodon.org" 34 status = 200 35 36[[plugins]] 37 package = "netlify-plugin-webmentions" 38 39 [plugins.inputs] 40 feedPath = "atom.xml" 41 42[[plugins]] 43 package = "netlify-plugin-submit-sitemap"