next.config.js 245 B

123456789101112
  1. const webpack = require('webpack');
  2. module.exports = {
  3. webpack: (config) => {
  4. config.plugins.push(
  5. new webpack.DefinePlugin({
  6. 'process.env.ENV': JSON.stringify(process.env.ENV),
  7. }),
  8. );
  9. return config;
  10. },
  11. };