gpt4 book ai didi

express - 我的 webpack-dev-middleware 设置无法获取/错误

转载 作者:行者123 更新时间:2023-12-03 16:52:46 25 4
gpt4 key购买 nike

首先,我在这里找到了许多类似的主题,但即使引用了它们,我仍然无法让它工作。

所以,我的问题只是我得到 Cannot GET /在 Chrome 中访问时 localhost:3000运行我的快速服务器后(使用 npm run serve )。不是找不到bundle.js文件;它根本找不到index.html。

当我运行 npm run serve 时,我在服务器控制台上没有看到任何错误package.json 文件中的脚本。 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));

最佳答案

问题是你并没有真正服务index.html webpack 块中的任何位置。您应该使用插件,例如 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'
})

关于express - 我的 webpack-dev-middleware 设置无法获取/错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44233727/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com