2022-09-02 17:49:44 -04:00
|
|
|
[build.environment]
|
2023-03-12 15:38:41 -04:00
|
|
|
HUGO_VERSION = "0.111.3"
|
2022-09-02 17:49:44 -04:00
|
|
|
|
|
|
|
[context.deploy-preview]
|
|
|
|
command = "hugo -b $DEPLOY_PRIME_URL"
|
|
|
|
|
|
|
|
[[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
|
|
|
|
|
|
|
|
# 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
|
|
|
|
skipPatterns = [
|
|
|
|
"public/index.html",
|
2023-03-06 12:34:08 -05:00
|
|
|
"public/about/index.html",
|
|
|
|
"public/contact/index.html",
|
2022-09-02 17:49:44 -04:00
|
|
|
"public/404.html",
|
|
|
|
]
|