-
Notifications
You must be signed in to change notification settings - Fork 2
/
web-ext-config.js
36 lines (36 loc) · 960 Bytes
/
web-ext-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
module.exports = {
build: {
overwriteDest: true
},
run: {
firefoxProfile: 'addons',
keepProfileChanges: true,
startUrl: [
'about:debugging',
'about:preferences',
'file:///home/grayedfox/github/multidict/test_page/test-page.html',
'https://grayedfox.github.io/multidict/',
'https://grayedfox.github.io/multidict/devdocs/index.html',
'https://addons.mozilla.org/en-US/firefox/addon/multidict/?src=search',
'https://stackoverflow.com/questions/62222185/highlight-specific-occurrence-of-word-in-text/62223803#62223803',
'https://github.com/GrayedFox/multidict/pull/31',
'https://bugzilla.mozilla.org/show_bug.cgi?id=1644692'
]
},
ignoreFiles: [
'package-lock.json',
'coverage/',
'coverage/**',
'docs/',
'docs/**',
'src/',
'src/**',
'test_page/',
'test_page/**',
'tasks/',
'tasks/**',
'test/',
'test/**',
'_config.yml'
]
}