friends-best/pages/_app.tsx

16 lines
465 B
TypeScript
Raw Normal View History

import 'tailwindcss/tailwind.css'
2021-07-23 16:14:54 +00:00
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