next.config.js 300 B

12345678910111213
  1. // eslint-disable-next-line import/no-extraneous-dependencies
  2. import webpack from 'webpack';
  3. module.exports = {
  4. webpack: (config) => {
  5. config.plugins.push(
  6. new webpack.DefinePlugin({
  7. 'process.env.ENV': JSON.stringify(process.env.ENV),
  8. }),
  9. );
  10. return config;
  11. },
  12. };