0.1.0 • Published 3 years ago

nextjs-debug-toolbar v0.1.0

Weekly downloads
-
License
MIT
Repository
-
Last release
3 years ago

Vercel Debug Toolbar

Installation

In order to use this package you need to start by installing it

$ npm install vercel-debug-toolbar -D

Open, or create, _App.js file and add the following code:

import VercelDebugToolbar from "../components/debug/vercel-debug-toolbar";

const _App = ({ Component, pageProps }) => (
  <>
    <Component {...pageProps} />
    <VercelDebugToolbar pageProps={pageProps} />
  </>
);

export default _App;