alibaba/dawn

为何dn-middleware-webpack中间件配置watch为false时,才去设置env

naifen00 opened this issue · 1 comments

1. Information

OS & version Node version Dawn version
macOS 10.13.5 v8.11.1 0.12.1

2. Problem

if (!opts.watch) {
    if (opts.env) {
      wpConfig.plugins.push(new webpack.DefinePlugin({
        'process.env': {
          NODE_ENV: JSON.stringify(opts.env)//production
        }
      }));
    }

目前配置env的时候,就不能设置watch为true,开发过程就无法热重载了

3. Recurrence

看到文档中webpack中间件环境配置的方法了