我正面临这个问题:
首先,我正在启动webpack来构建项目。在localhost上,一切正常。在build文件夹中,index.html和index.js正在构建。
但是,当我在浏览器中运行它(不使用本地服务器)但使用这些文件时,它似乎“找不到”。 检查webpack.config.js - 所有内容都放在一个index.js中。 这是webpack.config.js:
var path = require('path');
module.exports = {
entry: './entry.js',
output: {
filename: 'build/index.js',
publicPath: '/build'
},
resolve: {
extensions: ['', '.js', '.jsx', '.json']
},
module: {
loaders: [
{
test: /\.jsx?$/,
loader: 'babel-loader',
include: path.resolve(__dirname, "app"),
query: {
presets:['react', 'es2015', 'stage-0']
}
},
{
test: /\.scss$/,
loader: 'style-loader!css-loader!sass-loader'
}
]
}
};
没有恐怖。但是有文字“未找到”