Browser RUM - Next.js
Install
When using Next.js, you do not have direct access to the index.html
or template HTML file. You must define the structure of your RUM application with one of the following methods:
App Router
Define the structure of your application with app routers.
Click here for more information on integrating third party libraries with Next.js using app structure.
Apply the following script to your application code:
import Script from "next/script" export default function RootLayout({ children, }: { children: React.ReactNode }) { return ( <html lang="en">
Page Router
Define the structure of your application with page structure.
Click here for more information on integrating third party libraries with Next.js using page structure.
Apply the following script to your application code:
import Script from 'next/script' export default function MyApp({ Component, pageProps }) { return ( <> <Component {...pageProps} /> <Script strategy="beforeInteractive" id="middleware-lib-init" src="https://cdnjs.middleware.io/browser/libs/0.0.1/middleware-rum.min.js"
Need assistance or want to learn more about Middleware? Contact our support team in Slack.