webpack打包后,在打开html页面,就报了如下的错误
.babelrc的配置如下:
{
"presets": [
"react",
"es2015",
"stage-0"
],
"env": {
"development": {
"plugins": [
[
"react-transform",
{
"transforms": [
{
"transform": "react-transform-hmr",
"imports": [
"react"
],
"locals": [
"module"
]
}
]
}
]
]
}
}
}
报错:
locals[0] does not appear to be a `module` object with Hot Module replacement API enabled. You should disable react-transform-hmr in production by using `env` section in Babel configuration.
叮当猫咪
相关分类