Next.js Loads – Mark Witmer Nov 08 '22 at 13:41

  • Agreed. @Zach White you might want to elaborate on your answer. – jarora Mar 25 '23 at 12:36
  • -1

    Or if you want to try another way to import Js file like I did

    import { useEffect } from "react";
    
    function MyApp({ Component, pageProps }) {
        useEffect(() => {
            import("../styles/bootstrap.bundle.min.js");
        }, []);
        return <></>
    };