首先,我在这里发现了许多类似的主题,但即使提到它们之后,我仍然无法让它完全正常工作。
所以,我的问题只是当我在运行快速服务器(使用Cannot GET /
)后访问localhost:3000
时,我在Chrome中获得npm run serve
。它并不能找到bundle.js文件;它根本找不到index.html。
当我在package.json文件中运行npm run serve
脚本时,我在服务器控制台上看不到任何错误。 Webpack构建(从Webpack-dev-middleware调用)日志也没有显示错误。
如果我直接从终端运行webpack-dev-server并访问相同的URL,它可以正常工作。 (我已通过devServer
中的webpack.config.js
选项覆盖主机和端口以匹配我在快速服务器中使用的主机和端口。)
我做错了什么?
文件夹结构
/client
/main.js
/dist
/index.html
/assets/
/server
/server.js
/webpack.config.js
/package.json
webpack.config.js
const path = require('path');
module.exports = {
entry: './client/main.js',
output: {
path: path.resolve(__dirname, 'dist/assets'),
filename: 'bundle.js',
publicPath: '/assets/'
},
module: {
rules: [
{
use: 'babel-loader',
test: /\.jsx?$/,
exclude: /node_modules/,
},
{
use: ['style-loader', 'css-loader', 'sass-loader'],
test: /\.scss$/
}
]
},
devServer: {
host: 'localhost',
port: 3000,
historyApiFallback: true,
contentBase: path.resolve(__dirname, 'dist'),
}
};
/dist/index.html
<!DOCTYPE html>
<html>
<head>
<title>Webpack-Dev-Middleware Test</title>
</head>
<body>
<div id="app-container">
</div>
<script src="/assets/bundle.js"></script>
</body>
</html>
/server/server.js
const express = require('express');
const path = require('path');
const app = express();
const port = process.env.PORT || 3000;
if (process.env.NODE_ENV !== 'production') {
var webpackDevMiddleware = require("webpack-dev-middleware");
var webpack = require("webpack");
var config = require('./../webpack.config');
var compiler = webpack(config);
app.use(webpackDevMiddleware(compiler, {
publicPath : config.output.publicPath,
}));
} else {
app.use(express.static(path.resolve(__dirname + '/../dist/')));
app.get('*', (req, res) => {
res.sendFile(path.resolve(__dirname + '/../dist/index.html'));
});
}
app.listen(port, () => console.log('Started on port:', port));
答案 0 :(得分:2)
问题在于,您并非真正在webpack块中的任何位置提供index.html
。您应该使用html-webpack-loader
之类的插件在内存中使用它,或者使用express的静态函数,我认为更理想的(更多webpack方式)解决方案是前者。
以下是使用html-webpack-loader
。
(as one of the plugins in webpack config.)
new HtmlWebpackPlugin({
filename: 'index.html',
template: './dist/index.html',
title: 'Your website'
})