mirror of
https://github.com/Aviortheking/games.git
synced 2025-04-22 19:02:09 +00:00
24 lines
521 B
TypeScript
24 lines
521 B
TypeScript
import App from 'next/app'
|
|
import React from 'react'
|
|
|
|
import '@dzeio/components/style.css'
|
|
import PlausibleProvider from 'next-plausible'
|
|
|
|
export default class CApp extends App {
|
|
|
|
public render() {
|
|
const { Component, pageProps } = this.props
|
|
|
|
return (
|
|
// <PlausibleProvider
|
|
// enabled
|
|
// customDomain="https://proxy.dzeio.com"
|
|
// domain="games.avior.me"
|
|
// integrity="sha256-R6vN8jmBq9SIpnfJRnw9eNUfLbC2yO3GPQAKR5ZS7zQ="
|
|
// >
|
|
<Component {...pageProps} />
|
|
// </PlausibleProvider>
|
|
)
|
|
}
|
|
}
|