2022-07-21 12:19:16 -04:00
|
|
|
[build.environment]
|
2022-12-06 14:41:39 -05:00
|
|
|
HUGO_VERSION = "0.108.0"
|
2022-07-21 12:19:16 -04:00
|
|
|
|
2022-07-21 11:22:12 -04:00
|
|
|
[context.deploy-preview]
|
2022-07-21 12:19:56 -04:00
|
|
|
command = "hugo -b $DEPLOY_PRIME_URL"
|
2022-07-23 23:51:05 -04:00
|
|
|
|
|
|
|
[[plugins]]
|
|
|
|
package = "netlify-plugin-checklinks"
|
|
|
|
|
|
|
|
[plugins.inputs]
|
|
|
|
# An array of glob patterns for pages on your site
|
|
|
|
# Recursive traversal will start from these
|
|
|
|
entryPoints = [
|
|
|
|
"*.html",
|
|
|
|
]
|
|
|
|
|
|
|
|
# Recurse through all the links and asset references on your page, starting
|
|
|
|
# at the entrypoints
|
|
|
|
recursive = true
|
|
|
|
|
|
|
|
# Checklinks outputs TAP (https://testanything.org/tap-version-13-specification.html)
|
|
|
|
# by default. Enabling pretty mode makes the output easier on the eyes.
|
|
|
|
pretty = true
|
2022-07-24 05:39:28 -04:00
|
|
|
|
|
|
|
# You can mark some check as skipped, which will block checklinks
|
|
|
|
# from ever attempting to execute them.
|
|
|
|
# skipPatterns is an array of strings you can match against failing reports
|
2022-07-24 05:42:22 -04:00
|
|
|
skipPatterns = [
|
|
|
|
"public/index.html",
|
|
|
|
"public/about/index.html",
|
|
|
|
"public/code/index.html",
|
|
|
|
"public/privacy/index.html",
|
|
|
|
"public/donate/index.html",
|
|
|
|
"public/404.html",
|
|
|
|
]
|