zl程序教程

您现在的位置是:首页 >  其他

当前栏目

webpack 打包 Support for the experimental syntax 'classProperties' isn't currently enabled

打包webpack for &# The x27 enabled support
2023-06-13 09:12:15 时间

解决方案:安装如下插件

npm i -D @babel/plugin-proposal-class-properties 

在babelrc中配置插件:

{ 
 "presets": ["@babel/env"], 
 "plugins": ["@babel/plugin-transform-runtime","@babel/plugin-proposal-class-properties"] 
}