Created
February 26, 2021 08:13
-
-
Save eric-burel/f7e163c93233b4bc52bdaf7d3fe0110a to your computer and use it in GitHub Desktop.
Next webpack DefinePlugin
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// in next.config.js Webpack field | |
config.plugins.push( | |
new options.webpack.DefinePlugin({ | |
'process.env.NEXT_IS_SERVER': JSON.stringify(options.isServer.toString()), | |
}) | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment