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.
1 parent f42d138 commit b403d03Copy full SHA for b403d03
src/lib/get-settings/index.js
@@ -22,7 +22,11 @@ const mergeSettingsSources = (inputSettings = {}) => {
22
23
const getSettings = (inputSettings, isUsingDeployUrl) => {
24
const settings = mergeSettingsSources(inputSettings);
25
- if (Object.keys(settings).length === 0) return;
+ if (Object.keys(settings).length === 0) {
26
+ return isUsingDeployUrl
27
+ ? undefined
28
+ : { settings: { skipAudits: ['is-crawlable'] } };
29
+ }
30
31
// Set a base-level config based on the preset input value
32
// (desktop is currently the only supported option)
0 commit comments