1
Fork 0

Add Chromium profile to web-ext configuration.

This commit is contained in:
Bauke 2023-06-25 11:31:52 +02:00
parent 8adbee70e9
commit 9ed7f78d60
Signed by: Bauke
GPG Key ID: C1C0F29952BCF558
1 changed files with 2 additions and 0 deletions

View File

@ -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,