зеркало из https://github.com/openwpm/OpenWPM.git
21 строка
447 B
JavaScript
21 строка
447 B
JavaScript
/* eslint-env node */
|
|
|
|
const defaultConfig = {
|
|
// Global options:
|
|
sourceDir: "./bundled/",
|
|
artifactsDir: "./dist/",
|
|
ignoreFiles: [".DS_Store"],
|
|
// Command options:
|
|
build: {
|
|
overwriteDest: true,
|
|
},
|
|
run: {
|
|
firefox: process.env.FIREFOX_BINARY || "firefoxdeveloperedition",
|
|
browserConsole: true,
|
|
startUrl: ["about:debugging"],
|
|
pref: ["extensions.experiments.enabled=true"],
|
|
},
|
|
};
|
|
|
|
module.exports = defaultConfig;
|