Closed timfee closed 1 year ago
You may want to update installation instructions given the newest guidance at https://beta.nextjs.org/docs/api-reference/file-conventions/head
I was able to get my instance working using:
// head.tsx import PlausibleProvider from 'next-plausible' export default function Head() { return ( <> <meta charSet="utf-8" /> {/* snip */} <PlausibleProvider domain="foobar.com" taggedEvents /> </> ) }
Hi @timfee! Makes sense. I'll do when I have time. You can also send a PR if you want 🙂.
Thanks!!
Closing as head.js is deprecated
You may want to update installation instructions given the newest guidance at https://beta.nextjs.org/docs/api-reference/file-conventions/head
I was able to get my instance working using: