this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fixg

alice e1e1fdb2 6a630d35

+20 -11
+20 -11
src/app/layout.tsx
··· 54 54 <html lang="en"> 55 55 <head> 56 56 {USE_PLAUSIBLE && ( 57 - <NextPlausible 58 - domain={HOSTNAME} 59 - customDomain={`https://${PLAUSIBLE_DOMAIN}`} 60 - scriptProps={{ 61 - /* 62 - // @ts-expect-error because */ 63 - strategy: "beforeInteractive", 64 - }} 65 - trackOutboundLinks 66 - selfHosted 67 - /> 57 + <> 58 + <NextPlausible 59 + domain={HOSTNAME} 60 + customDomain={`https://${PLAUSIBLE_DOMAIN}`} 61 + scriptProps={{ 62 + /* 63 + // @ts-expect-error sigh */ 64 + strategy: "beforeInteractive", 65 + }} 66 + trackOutboundLinks 67 + selfHosted 68 + /> 69 + <Script 70 + id="next-plausible-init-override" 71 + strategy="beforeInteractive" 72 + dangerouslySetInnerHTML={{ 73 + __html: `window.plausible = window.plausible || function() { (window.plausible.q = window.plausible.q || []).push(arguments) }`, 74 + }} 75 + /> 76 + </> 68 77 )} 69 78 </head> 70 79 <body