mirror of
https://github.com/formbricks/formbricks.git
synced 2026-02-20 13:59:23 -06:00
12 lines
333 B
TypeScript
12 lines
333 B
TypeScript
import PlausibleProvider from "next-plausible";
|
|
import type { AppProps } from "next/app";
|
|
import "../styles/globals.css";
|
|
|
|
export default function App({ Component, pageProps }: AppProps) {
|
|
return (
|
|
<PlausibleProvider domain="formbricks.com" selfHosted={true}>
|
|
<Component {...pageProps} />
|
|
</PlausibleProvider>
|
|
);
|
|
}
|