你好,我被我的应用程序困住,我的应用程序在所有其他浏览器中工作正常,而不是在IE中,它会抛出错误
原文链接:https://www.f2er.com/react/301112.html0x800a0416 - JavaScript runtime error: Multiple definitions of a property not allowed in strict mode
我在webpack.config中实现了loader
module: { loaders: [{ test: /\.js?$/,exclude: /(node_modules|bower_components)/,loaders: ['babel'],include: path.join(__dirname,'scripts') }] }
我的Package.json脚本包含“build”:“./ node_modules / .bin / webpack –config webpack.config.production.js –progress –profile –colors”,用于构建包
如果我将显式找到use strict并从bundle中删除它然后它工作正常,那么如何在使用webpack创建一个bundle时删除该严格模式