You suggest to handle cookie consent like this:
window.VWO = window.VWO || [];
window.VWO.init = window.VWO.init || function(state) { window.VWO.consentState = state; }
// <number-value> can be any of the following:
// 1 - Accepted
// 2 - Pending
// 3 - Denied
window.VWO.init(<number-value>);
// This code needs to be implemented on the client website separately.
Does it work with using this npm package? Or could you maybe even integrate consent into the component imported from the npm package?
You suggest to handle cookie consent like this:
Does it work with using this npm package? Or could you maybe even integrate consent into the component imported from the npm package?