Skip to content

Instantly share code, notes, and snippets.

@pi0
Created March 12, 2021 17:29
Show Gist options
  • Star 12 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save pi0/5b3dee28f88ca6143d968dc43e00fb74 to your computer and use it in GitHub Desktop.
Save pi0/5b3dee28f88ca6143d968dc43e00fb74 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
}
}
@revskill10
Copy link

Thanks !

@revskill10
Copy link

Thanks !

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment