From 9ed7f78d60b97cf35cb35668322fc5492ce8e5a7 Mon Sep 17 00:00:00 2001 From: Bauke Date: Sun, 25 Jun 2023 11:31:52 +0200 Subject: [PATCH] Add Chromium profile to web-ext configuration. --- source/web-ext.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source/web-ext.ts b/source/web-ext.ts index 2172bc9..1337568 100644 --- a/source/web-ext.ts +++ b/source/web-ext.ts @@ -19,6 +19,7 @@ type WebExtConfig = { run: { browserConsole: boolean; + chromiumProfile: string; firefoxProfile: string; keepProfileChanges: boolean; profileCreateIfMissing: boolean; @@ -53,6 +54,7 @@ export function createWebExtConfig( run: { browserConsole: dev, + chromiumProfile: path.join(buildDir, "chromium-profile/"), firefoxProfile: path.join(buildDir, "firefox-profile/"), keepProfileChanges: true, profileCreateIfMissing: true,