From 9af0d5a3b927bf31b35ff62f53dbaa4ffd08d266 Mon Sep 17 00:00:00 2001 From: Brian Jacobel Date: Sat, 25 May 2024 20:53:54 -0400 Subject: [PATCH] Arg has been removed --- src/commands/lighthouse.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/lighthouse.ts b/src/commands/lighthouse.ts index eb5001f..b2e9fbc 100644 --- a/src/commands/lighthouse.ts +++ b/src/commands/lighthouse.ts @@ -61,7 +61,7 @@ export const handler = async (): Promise => { console.log('showing results'); await fs.writeFile(reportPath, report); - await open(reportPath, { wait: false, url: true }); + await open(reportPath, { wait: false }); console.log('shutting down'); await server.close();