jacob-lcs / react-webpack5-template

webpack5 react 项目模板,支持 typescript,使用 SWC 编译,体验超快速度

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

const 依然存在!

hellobq opened this issue · comments

配置了 @babel/preset-env 的 targets 属性值:

["@babel/preset-env", { "targets": { "ie": 11 } }]

打包后的 dist 产物依然存在 const 关键字:

image

commented

请在 webpack.common.js 中新增 target: ['web', 'es5']

commented

具体如何修改可以查看这里:

target: ['web', 'es5'],