1.0.1 • Published 4 years ago

next-plugin-profiler v1.0.1

Weekly downloads
78
License
MIT
Repository
github
Last release
4 years ago

Next.js + React Profiler

Enable the React Profiler during a production build in your Next.js project

Installation

npm install --save next-plugin-profiler

or

yarn add next-plugin-profiler

Usage with environment variables

Create a next.config.js:

// next.config.js
const withProfiler = require(`next-plugin-profiler`)({
  isEnabled: process.env.ENABLE_PROFILER === `true`
});

module.exports = withProfiler({});

Then you can run a build command with environment variable and the condition you've set:

ENABLE_PROFILER=true npm run build