forked from harry-private/lookup-in-popup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchrome_config.js
38 lines (38 loc) · 907 Bytes
/
chrome_config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
module.exports = {
// Global options:
// verbose: true,
// Command options:
build: {
overwriteDest: true,
},
run: {
// firefox: "nightly",
// target: ['chromium'],
// browserConsole: true,
startUrl: [
"https://en.wikipedia.org/wiki/Main_Page",
"chrome://extensions/",
],
args: [
// "--auto-open-devtools-for-tabs=true",
// "-start-maximized=true"
]
},
"artifactsDir": "chrome_build",
ignoreFiles: [
".gitignore",
"CHANGELOG.md",
"firefox_config.js",
"chrome_config.js",
"HOWTO.md",
"firefox_build",
"chrome_build",
"README.md",
"package.json",
"package-lock.json",
"LICENSE",
"debug.log",
"GLOBAL_TODOS.txt",
"files_i_may_need_in_future"
],
};