我已经使用由 webpack 编译的 react 前端以及在 node 和 express 上运行的服务器设置了我的项目。
当我部署到生产环境时,我对服务器的请求返回的是“dist”文件夹中的 index.html 文件,而不是带有数据的 json。
我的 webpack 编译输出位于 ./dist 位置。
这是我的 server.js 文件的路由部分:
if (process.env.NODE_ENV === 'production') {
app.use(express.static('dist'));
const path = require('path');
app.get('/', (req, res) => {
res.sendFile(path.resolve(__dirname, 'dist', 'index.html'));
});
}
// Use our router configuration when we call /
app.use('/', router);
这是我的 webpack 配置文件的一部分:
var HtmlWebpackPlugin = require('html-webpack-plugin');
var HTMLWebpackPluginConfig = new HtmlWebpackPlugin({
template: __dirname + '/client/index.html',
filename: 'index.html',
inject: 'body'
});
module.exports = {
entry: [
'./client/index.js'
],
output: {
path: __dirname + '/dist',
filename: 'index_bundle.js'
},
devServer: {
inline: true,
contentBase: './dist',
port: 8080,
proxy: { '/api/**': { target: 'http://localhost:3000', secure: false } }
},
module: {
loaders: [
{test: /\.js$/, exclude: /node_modules/, loader: 'babel-loader', query: {presets: ['es2015','react'], plugins: ['transform-es2015-destructuring', 'transform-object-rest-spread']}},
{test: /\.jpe?g$|\.gif$|\.svg$|\.png$/i, loader: 'file-loader?name=/images/[name].[ext]'},
{test: /\.css$/, loaders: ['style-loader', 'css-loader', 'postcss-loader', 'sass-loader','resolve-url-loader']},
{test: /\.scss$/, loaders: ['style-loader', 'css-loader','postcss-loader', 'sass-loader','resolve-url-loader']}
]
},
plugins: [HTMLWebpackPluginConfig]
};
我的请求如下(api 路由 /api/chefs 返回一个带有用户配置文件的 json(在开发中测试):
export function listChefs() {
return function (dispatch) {
axios.get('/api/chefs')
.then((response) => {
dispatch({
type: LIST_CHEFS,
payload: response.data
});
})
.catch((err) => {
errorHandler(dispatch, 'There was a problem. Please refresh and try again.');
});
};
}
似乎我使用 axios 从我的客户端发出的调用实际上是访问了未被识别的 api url,因此被重定向到简单的服务器 index.html 文件。
有什么帮助吗?
干杯