Orest Bida
Orest Bida
@dreinon there is no default export so that won't work. You should use the `import *` syntax, as shown in the docs: ```js import * as CookieConsent from 'vanilla-cookieconsent'; ```
It mostly boils down to personal preference. I like the explicitness of named exports. They are more flexible and clearer to me. This clearly conveys that you are willingfully loading...
#289 #523 AFAIK, for this plugin to be a Google Certified CMP it must first be a IAB certified CMP. To register as IAB certified CMP and implement the TCF...
Sadly that looks to be the case. I know a few people who incorporate ads into their websites but yield minimal returns, and the subscribtion to a certified CMP on...
I just created a basic example [here](https://stackblitz.com/edit/sveltejs-kit-template-default-l2yqea?file=src%2Fcomponents%2Fiframemanager.svelte,src%2Froutes%2F%2Bpage.svelte%3AL38).
@streiten yep ;)
@agracia-foticos you can use the [.getConfig()](https://cookieconsent.orestbida.com/reference/api-reference.html#getconfig) method to retrieve any config. field.
> Would it be possible to execute the "cc.run()" command as soon as possible By default the plugin is loaded asynchronously, but you can change this behaviour via the [lazyHtmlGeneration](https://cookieconsent.orestbida.com/reference/configuration-reference.html#lazyhtmlgeneration)...
Perhaps I wasn't clear, you should set `lazyHtmlGeneration` to false to run the plugin synchronously. We can leave this open, until there is a docs. section on how to set...
I can confirm the issue. Although the #661 *does* fix this setup, it also breaks the test suite, as jest (the test framework) doesn't support es modules. The workaround, for...