We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 429622a + b904e5a commit f5da91bCopy full SHA for f5da91b
src/lib/config.js
@@ -38,7 +38,7 @@ const defaultConfig = {
38
"custom-font-url": null,
39
},
40
digitrust: {
41
- redirects: true
+ redirects: false
42
}
43
};
44
src/lib/config.test.js
@@ -9,7 +9,7 @@ describe('config', () => {
9
expect(config.css['font-family']).to.equal('MonoType');
10
expect(config.css['color-primary']).to.equal('#0a82be');
11
config.update({ digitrust: { some: 'prop' }});
12
- expect(config.digitrust.redirects).to.be.true;
+ expect(config.digitrust.redirects).to.be.false;
13
});
14
15
it('.copy returns new object containing config values', () => {
0 commit comments