next.js/examples/with-axiom/pages/_app.tsx
_app.tsx12 lines289 B
import { log } from "next-axiom";
import { AppProps } from "next/app";
export { reportWebVitals } from "next-axiom";

log.info("Hello from frontend", { foo: "bar" });

const MyApp = ({ Component, pageProps }: AppProps) => {
  return <Component {...pageProps} />;
};

export default MyApp;
Quest for Codev2.0.0
/
SIGN IN