Skip to content

Instantly share code, notes, and snippets.

@ecklf
Forked from pi0/next.config.js
Created March 15, 2021 19:11
Show Gist options
  • Save ecklf/ad2b7865cec439f97f1ea055a8c1beaa to your computer and use it in GitHub Desktop.
Save ecklf/ad2b7865cec439f97f1ea055a8c1beaa to your computer and use it in GitHub Desktop.
Webpackbar with Next.js
const Webpackbar = require('webpackbar')
module.exports = {
webpack: (config, { isServer }) => {
config.plugins.push(new Webpackbar({ name: isServer ? 'server' : 'client' }))
return config
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment