为什么 React 应用程序的生产构建(使用 Webpack 和 Babel)使用错误的 HMR 开发环境,从而导致错误?

IT技术 javascript reactjs webpack babeljs webpack-hmr
2021-05-07 09:12:19

我正在尝试为我的 React 项目创建一个生产版本,但它选择了错误的配置。

在开发版本中,我使用 HMR(热module更换)。这是在 .babelrc 中配置的,在env > development > plugins. 添加额外节点时,env > production它似乎被忽略了。它仍然使用带有HMR的开发配置,导致错误:

未捕获的错误:locals[0] 似乎不是module启用了热module替换 API对象。您应该使用envBabel 配置中的部分在生产中禁用 react-transform-hmr 请参阅自述文件中的示例:https : //github.com/gaearon/react-transform-hmr

当然,我已经检查了该信息,但一切似乎都正确。当我从 .babelrc 的开发配置中删除 HMR 插件时,它可以工作,证明它确实使用了开发配置而不是生产配置。这是我的文件:

包.json

{
  "name": "myproject",
  "main": "index.js",
  "scripts": {
    "serve": "cross-env NODE_ENV=development webpack-dev-server --content-base bin/ --devtool eval --progress --colors --hot --inline",
    "deploy": "cross-env NODE_ENV=production BABEL_ENV=production webpack -p --config webpack.production.config.js"
  }
  //dependencies omitted in this example
}

.babelrc

{
    "presets": ["react", "es2015", "stage-0"],
    "plugins": [
        ["transform-decorators-legacy"]
    ],
    "env": {
        "development": {
            "plugins": [
                ["react-transform", {
                    "transforms": [{
                        "transform": "react-transform-hmr",
                        "imports": ["react"],
                        "locals": ["module"]
                    }]
                }]
            ]
        },
        "production": {
            "plugins": []
        }
    }
}

正如您在 中看到的package.json > scripts > deploy,我什至明确地将 BABEL_ENV 设置为“生产”。

为什么会这样?如何确保生产版本忽略 HMR 插件?

顺便说一句,在React-transform-HMR Github 页面上搜索经常会导致issue #5,这是一个很长的线程,没有明确的解决方案。

编辑 2016.03.30:根据要求添加我的 webpack 配置的 Babel 部分。编辑 2016.04.06:根据要求添加整个 webpack 文件。

webpack.production.config.js

require('es6-promise').polyfill();
var path = require('path');

module.exports = {
    entry: './main.jsx',
    context: __dirname + path.sep + 'src',
    output: {
        path: path.resolve(__dirname, './bin'),
        filename: 'index.js'
    },
    devServer: {
        port: 3333
    },
    module: {
        loaders: [
            {
                test: /\.js(x?)$/,
                exclude: /node_modules/,
                loader: 'babel',
                query: {
                    presets: ['react', 'es2015', 'stage-0'],
                    plugins: [['transform-decorators-legacy']]
                }
            },
            {
                test: /\.css$/,
                loader: "style!css"
            },
            {
                test: /\.scss$/,
                exclude: /(node_modules|bower_components)/,
                loader: 'style-loader!css-loader!sass-loader?sourceMap'
            }
        ]
    }
};
4个回答

唯一对我有用的是,我写了——

process.env.NODE_ENV = 'production';

在我的 webpack.config.prod.js 文件的开头。

看来,无论什么巴贝尔一直使用development一节的env值规定.babelrc对我来说解决问题的是使用“development”以外的名称并将其设置为 BABEL_ENV 的值。

"env": {
    "dev": {
        "plugins": [
        ]
    },
    "production": {
    }
}

我使用单独的 conf 进行开发。在插件中我有:

new webpack.DefinePlugin({
  'process.env': {
    'NODE_ENV': JSON.stringify('development'),
    'BABEL_ENV': JSON.stringify('dev')
  }
}),

&在 shell 中意味着它将在后台运行,所以也许你的变量声明没有被同时发生的构建内容捕获。好消息是您可以在命令前加上变量声明。

您可以像这样简化命令:

"serve": "NODE_ENV=development webpack-dev-server --content-base bin/ --devtool eval --progress --colors --hot --inline",
"deploy": "NODE_ENV=production BABEL_ENV=production webpack -p --config webpack.production.config.js"

你可以只使用babel-preset-react-hmre.

.babelrc

{
    "presets": ["react", "es2015", "stage-0"],
    "plugins": [
        "transform-decorators-legacy"
    ],
    "env": {
        "development": {
            "presets": ["react-hmre"]
        }
    }
}

网络包

    {
        test: /\.js(x?)$/,
        exclude: /node_modules/,
        loader: 'babel',
        query: {
            presets: ['es2015', 'react', 'stage-0'],
            plugins: ['transform-decorators-legacy'],
            env: {
              development: {
                presets: ['react-hmre']
              }
            }
        }
    }