问题是我犯了这个错误
Failed to load resource: the server responded with a status of 404 (Not Found)
当我使用Web包开发服务器时。
但是如果我只是构建项目,那么我就可以运行我的
index.html
并得到了预期的结果。
我的项目结构是:
public/
index.html
assets/
src/
index.js
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>PBWA</title>
</head>
<body>
<div id="root"></div>
</body>
<script src="assets/bundle.js"></script>
</html>
以下是网页包配置文件
网页包。常见的js公司
const path = require('path')
const CleanWebpackPlugin = require('clean-webpack-plugin')
module.exports = {
entry: './src/index.js',
plugins: [
new CleanWebpackPlugin(['assets'])
],
output: {
filename: 'bundle.js',
path: path.resolve(__dirname, 'public/assets')
}
}
网页包。开发人员js
const merge = require('webpack-merge')
const common = require('./webpack.common.js')
module.exports = merge(common, {
devtool: 'inline-source-map',
devServer: { contentBase: './public' }
})
网页包。产品js
const merge = require('webpack-merge')
const common = require('./webpack.common.js')
const webpack = require('webpack')
const UglifyJSPlugin = require('uglifyjs-webpack-plugin')
module.exports = merge(common, {
devtool: 'source-map',
plugins: [
new UglifyJSPlugin({ sourceMap: true }),
new webpack.DefinePlugin({
'process.env.NODE_ENV': JSON.stringify('production')
})
]
})
所以当我跑步的时候
webpack-dev-server --open --config webpack.dev.js
然后我得到了错误。
当我跑步的时候
webpack --config webpack.prod.js
然后
open index.html
一切都很好。
我的问题是为什么Web包开发服务器的行为如此奇怪?我错过了什么?