run browsersync in ghost mode

The average user probably does not want every reader's scroll position synced to every other reader.
master
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
1 changed files with 6 additions and 1 deletions

View File

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