当我试图在IE11中打开我的反应项目时,我收到错误' SCRIPT1014无效字符'。 而其他所有浏览器甚至可以完美地运行Edge。 我尝试过使用' core.js',' babel-polyfills',' babel-plugin-transform-class-properties'。
这是我的webpack.config.js文件:
// webpack v4
const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const ExtractTextPlugin = require('extract-text-webpack-plugin');
module.exports = {
entry: './src/index.js',
output: {
path: path.resolve(__dirname, '/dist'),
filename: 'index_bundle.js',
publicPath: '/',
},
module: {
rules: [
{
test: /\.js$/,
exclude: /node_modules/,
use: {
loader: 'babel-loader',
},
},
{
test: /\.styl$/,
exclude: /node_modules/,
use: ExtractTextPlugin.extract({
fallback: 'style-loader',
use: ['css-loader', 'postcss-loader', 'stylus-loader'],
}),
},
{
test: /\.(png|jp(e*)g|svg|woff|woff2|eot|ttf|otf)$/,
use: [{
loader: 'url-loader',
options: {
limit: 8000, // Convert images < 8kb to base64 strings
name: 'images/[hash]-[name].[ext]',
},
}],
},
],
},
devServer: {
port: 8881,
host: '0.0.0.0',
historyApiFallback: true,
},
watch: true,
plugins: [
new HtmlWebpackPlugin({
template: './src/index.html',
}),
new ExtractTextPlugin(
{ filename: 'app.bundle.css' },
),
],
};
我尝试了以下问题的解决方案,这对我没有帮助:
react with IE11 is not working, displaying blank screen
IE11 throwing “SCRIPT1014: invalid character” where all other browsers work
任何帮助将不胜感激。提前谢谢。
答案 0 :(得分:0)
我的错误。我正在使用IE中不支持的'flexbox-polyfills'软件包。 所以,我删除了这个包,并在webpack.config.js文件中添加了'babel-polyfill'包及其配置。
它解决了我的问题。