mirror of
https://github.com/calli-eve/eve-pi.git
synced 2026-02-18 05:29:52 +01:00
Replace Vercel analytics with plausible
This commit is contained in:
11
src/pages/_app.jsx
Normal file
11
src/pages/_app.jsx
Normal file
@@ -0,0 +1,11 @@
|
||||
// pages/_app.js
|
||||
/* eslint-disable react/prop-types */
|
||||
import PlausibleProvider from 'next-plausible'
|
||||
|
||||
export default function MyApp({ Component, pageProps }) {
|
||||
return (
|
||||
<PlausibleProvider domain="pi.avanto.tk">
|
||||
<Component {...pageProps} />
|
||||
</PlausibleProvider>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user