Open Younghyo opened 1 month ago
In the readme page, it's saying
If are using the app directory include PlausibleProvider inside the root layout:
However, it's not allowed to customize inside of <head> tag in layout.tsx in next js 13 with app router concept. Is this only me suffering this issue?
<head>
layout.tsx
Is there a solution to this already? I am experience the same issue.
Fixed it: Just use the PlausibleProvider as a wrapper for your body component, after it worked for me.
In the readme page, it's saying
However, it's not allowed to customize inside of
<head>
tag inlayout.tsx
in next js 13 with app router concept. Is this only me suffering this issue?