Jose

Results 3 comments of Jose

I resolved this issue using Flowbite as follows: ``` import { initFlowbite } from "flowbite"; document.addEventListener("astro:after-swap", () => { initFlowbite(); }); ``` Additionally, instead of reloading all Flowbite components after...

I had the same error in Astro, and it was solved by removing the following lines from my code: ``` import * as dotenv from "dotenv"; dotenv.config(); ``` These lines...