From 4d479f310fc05f9312ed604286520549461858d4 Mon Sep 17 00:00:00 2001 From: Bart van der Braak Date: Wed, 12 Jun 2024 00:33:15 +0200 Subject: [PATCH] Skip robots.txt on Vercel preview URLs --- unlighthouse.config.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/unlighthouse.config.ts b/unlighthouse.config.ts index 07d0e8d..74404b4 100644 --- a/unlighthouse.config.ts +++ b/unlighthouse.config.ts @@ -14,5 +14,8 @@ export default defineConfig({ ci: { reporter: 'jsonExpanded', buildStatic: true + }, + scanner: { + robotsTxt: false } });