From 0aee155c75e838a9ec04012c736e94d3b8aacf7a Mon Sep 17 00:00:00 2001 From: Nolan Lawson Date: Sun, 4 Aug 2024 09:39:34 -0700 Subject: [PATCH] fix: actually expose the cli option --- src/flags.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/flags.ts b/src/flags.ts index f621844..da3df1c 100644 --- a/src/flags.ts +++ b/src/flags.ts @@ -235,6 +235,11 @@ export const optDefs: commandLineUsage.OptionDefinition[] = [ type: String, defaultValue: defaults.traceCategories.join(','), }, + { + name: 'cross-origin-isolated', + description: 'Add HTTP headers to enable cross-origin isolation', + type: Boolean, + }, ]; export interface Opts {