My personal blog hauleth.dev
blog
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

ft: add Netlify plugins for webmentions and HTML optimisation

+23
+23
netlify.toml
··· 22 22 from = "/post" 23 23 to = "/" 24 24 force = true 25 + 26 + [[plugins]] 27 + package = "netlify-plugin-webmentions" 28 + 29 + [plugins.inputs] 30 + feedPath = "atom.xml" 31 + 32 + [[plugins]] 33 + package = "netlify-plugin-minify-html" 34 + 35 + [plugins.inputs] 36 + contexts = [ 37 + 'production', 38 + 'branch-deploy', 39 + 'deploy-preview' 40 + ] 41 + 42 + [plugins.inputs.minifierOptions] 43 + useShortDoctype = true 44 + collapseBooleanAttributes = true 45 + collapseWhitespace = true 46 + conservativeCollapse = true 47 + removeComments = true