Dynamic import with ssr false but lighthouse still complaining of unused js
Unanswered
serj posted this in #help-forum
serjOP
Pages dir
const Modal = dynamic(() => import('./Modal'), { ssr: false });
Why is this happening how can I avoid it, to be included in the main bundle ?
const Modal = dynamic(() => import('./Modal'), { ssr: false });
Why is this happening how can I avoid it, to be included in the main bundle ?