我遇到了这个问题。
这是我对iPhone 5的检查,如您所见,我遇到了错误,并且我的页面空白。现在,在我的台式机上和其他设备(不是iPhone 5)上都可以使用。在iPhone 6或iPhone X上也可以使用。
那么,这是哪个错误?控制台都不给我错误。.
如果有人需要在Windows或其他操作系统(不是osx)上检查他们的iPhone,我使用了本指南:inspect device
这是我的webconfig ..也许问题在这里?
const HtmlWebPackPlugin = require("html-webpack-plugin");
const path = require('path');
const htmlWebpackPlugin = new HtmlWebPackPlugin({
template: "./src/index.html",
filename: "./index.html"
});
module.exports = {
entry: ["babel-polyfill", "./src/"],
output:{
filename: 'bundle.js',
path: path.resolve('dist'),
publicPath: '/',
},
module: {
rules: [
{
test: /\.js$/,
exclude: /node_modules/,
use: {
loader: "babel-loader"
}
},
{
test: /\.css$/,
use: [
{
loader: "style-loader"
},
{
loader: "css-loader",
options: {
modules: true,
importLoaders: 1,
localIdentName: "[hash:base64:5]"
}
}
]
}
]
},
plugins: [htmlWebpackPlugin],
devServer: {
historyApiFallback: true,
},
};