jop-software / astro-cookieconsent

Simple to use Cookie Consent for Astro
GNU General Public License v3.0
42 stars 3 forks source link

CSS import not resolved correctly #2

Closed cngJo closed 9 months ago

cngJo commented 1 year ago

Our injectScript imports the vanilla-cookieconsent CSS script, which does not properly get loaded on all pages.

Current Workaround: Add the following HTML snippet in a global place, e.G. your Layout.

<script>
    import 'vanilla-cookieconsent/dist/cookieconsent.css';
</script>