How to add Intercom to a Next.js site
This is how I integrated Intercom into a Next.js website.
Intercom has a guide on how to setup a single page app Integrate Intercom in a single page app but I couldn't find anything specific to React or Next.js.
The guide linked above documents the ...
blog.justinramel.com3 min read
Glenn Rempe
Very helpful. Thanks for the writeup. I did find I had to add a call to:
const router = useRouter()Without this the
useEffect()for routes will not work.