12345678910111213 |
- // eslint-disable-next-line import/no-extraneous-dependencies
- import webpack from 'webpack';
- module.exports = {
- webpack: (config) => {
- config.plugins.push(
- new webpack.DefinePlugin({
- 'process.env.ENV': JSON.stringify(process.env.ENV),
- }),
- );
- return config;
- },
- };
|