dieulot, is there a small bug with the allowQueryString check?
const allowQueryString = 'instantAllowQueryString' in document.body.dataset
const allowQueryString = 'instantallowquerystring' in document.body.dataset
<body data-instantAllowQueryString="foo">
'instantAllowQueryString' in document.body.dataset === false
'instantallowquerystring' in document.body.dataset === true
dieulot, is there a small bug with the allowQueryString check?
I think should be: If I have: then and because html data attributes get converted to lowercase by the browser (I think).