Skip to content

Instantly share code, notes, and snippets.

@johhansantana
Created March 26, 2017 19:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save johhansantana/38fb563c912e81cb95fbbe2e2ad4343f to your computer and use it in GitHub Desktop.
Save johhansantana/38fb563c912e81cb95fbbe2e2ad4343f to your computer and use it in GitHub Desktop.
Custom webpack in next.js
module.exports = {
webpack: (config, { dev }) => {
// Perform customizations to config
config.node = {
fs: 'empty'
};
return config
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment