20 строки
668 B
JavaScript
20 строки
668 B
JavaScript
// For use on addons-server, or with the command `amo:ui-tests`.
|
|
module.exports = {
|
|
apiHost: 'http://olympia.test',
|
|
proxyApiHost: 'http://olympia.test',
|
|
proxyPort: 3000,
|
|
proxyEnabled: true,
|
|
|
|
CSP: false,
|
|
|
|
// Setting this to false returns add-ons that are not compatible but means
|
|
// developers can pull from a much larger dataset on the local/-dev/-stage
|
|
// servers. Set this to true to only get compatible add-ons (this is what
|
|
// happens in production) but get a lot fewer add-ons in search results.
|
|
restrictSearchResultsToAppVersion: false,
|
|
fxaConfig: 'default',
|
|
trackingEnabled: false,
|
|
loggingLevel: 'debug',
|
|
enableNodeStatics: true,
|
|
};
|