react-floating-whatsapp
react-floating-whatsapp copied to clipboard
Add support for next.js, un optimized code causes 226 KB of extra JavaScript first load causing performance issues.
Results with this library:
Result after removing it
You can use dynamic import to prevent this, for instance:
const WhatsappChatScript = dynamic(
() => import('@components/your-floating-whatsapp-component'),
{ ssr: false }
)