run browsersync in ghost mode

The average user probably does not want every reader's scroll position synced to every other reader.
This commit is contained in:
Cassey Lottman 2019-06-18 10:22:58 -05:00 committed by GitHub
parent 1148b90e22
commit b6e0b85a87
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -61,7 +61,12 @@ module.exports = function(eleventyConfig) {
res.write(content_404); res.write(content_404);
res.end(); res.end();
}); });
} },
ghostMode: {
clicks: false,
forms: false,
scroll: false,
},
} }
}); });