0.1.6 • Published 2 years ago
@davidsneighbour/netlify-plugin-hugo-helper v0.1.6
This Netlify build plugin adds caching of Hugo resource files to your build process.
Setup
Install the package with:
npm install --save-dev @davidsneighbour/netlify-plugin-hugo-helperThen add it to your netlify.toml file:
[[plugins]]
package = "@davidsneighbour/netlify-plugin-hugo-helper"
[plugins.inputs]
debug = falseThe inputs section can contain the following parameters:
cache- Enable caching of resources between deploys (default: true)debug- Show verbose logs and list backed-up and restored files (default: false)srcdir- Relative path to source directory in case you use Hugo's "--s" option (default: '')
To configure the plugin for a certain deploy context, you can use the context subsection:
[[context.production.plugins]]
package = "@davidsneighbour/netlify-plugin-hugo-helper"
[context.production.plugins.inputs]
debug = false