Skip to content

Commit

Permalink
Merge pull request #242 from anglepoised/reduce-seo-threshold
Browse files Browse the repository at this point in the history
reduce seo threshold
  • Loading branch information
anglepoised authored Jan 10, 2024
2 parents bb8d545 + 4f50f7d commit f1e3669
Showing 1 changed file with 21 additions and 23 deletions.
44 changes: 21 additions & 23 deletions netlify.toml
Original file line number Diff line number Diff line change
@@ -1,35 +1,33 @@
[build]
publish = "dist"
publish = "dist"

[[plugins]]
package = "netlify-plugin-html-validate"
[plugins.inputs]
ext = "html"
config = ".htmlvalidate.json"
path = "dist"
[plugins.inputs]
ext = "html"
config = ".htmlvalidate.json"
path = "dist"

[[plugins]]
package = "@netlify/plugin-lighthouse"

[plugins.inputs.audits]
output_path = "lighthouse/index.html"
[plugins.inputs.audits]
output_path = "lighthouse/index.html"

[plugins.inputs.thresholds]
performance = 0.9
accessibility = 0.9
best-practices = 0.9
seo = 0.9
pwa = 0.0 # Skip PWA threshold for now
[plugins.inputs.thresholds]
performance = 0.9
accessibility = 0.9
best-practices = 0.9
seo = 0.8
pwa = 0.0 # Skip PWA threshold for now

[[plugins]]
package = "netlify-plugin-checklinks"
[plugins.inputs]
entryPoints = [
"index.html",
]
recursive = true
pretty = false
skipPatterns = ["dist/feed"]
todoPatterns = ["dist/weblog/entry/000134", "dist/straplines/add"]
checkExternal = false
followSourceMaps = false
[plugins.inputs]
entryPoints = ["index.html"]
recursive = true
pretty = false
skipPatterns = ["dist/feed"]
todoPatterns = ["dist/weblog/entry/000134", "dist/straplines/add"]
checkExternal = false
followSourceMaps = false

0 comments on commit f1e3669

Please sign in to comment.