friends-best/pages/_app.tsx

16 lines
462 B
TypeScript
Raw Normal View History

2021-07-23 16:14:54 +00:00
import '../styles/globals.css'
import type { AppProps } from 'next/app'
2021-07-23 18:35:41 +00:00
import {NextIntlProvider} from 'next-intl';
2021-07-24 13:31:40 +00:00
import PlausibleProvider from 'next-plausible';
2021-07-23 16:14:54 +00:00
2021-07-23 18:35:41 +00:00
function _App({ Component, pageProps }: AppProps) {
2021-07-24 13:31:40 +00:00
return (
<PlausibleProvider trackOutboundLinks={true} domain="vannerba.st">
<NextIntlProvider messages={pageProps.messages}>
<Component {...pageProps} />
</NextIntlProvider>
</PlausibleProvider>
)
2021-07-23 16:14:54 +00:00
}
2021-07-23 18:35:41 +00:00
export default _App