From af2762028b804b83ddb9642541a36eeea4aeae7f Mon Sep 17 00:00:00 2001 From: Neshura Date: Tue, 2 Jan 2024 03:16:05 +0100 Subject: [PATCH] Add urls to unlighthouse config --- unlighthouse.config.ts | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/unlighthouse.config.ts b/unlighthouse.config.ts index 037a05d..94ed04b 100644 --- a/unlighthouse.config.ts +++ b/unlighthouse.config.ts @@ -1,12 +1,13 @@ export default { - site: 'http://localhost:8000', - ci: { - budget: { - 'performance': 90, - 'accessibility': 100, - 'best-practices': 90, - 'seo': 90, - }, - buildStatic: true - } -} \ No newline at end of file + site: 'http://localhost:8000', + ci: { + budget: { + performance: 90, + accessibility: 100, + 'best-practices': 90, + seo: 90 + }, + buildStatic: true + }, + urls: ['/', '/servers', '/services', '/about'] +};