api 请求在一分钟后出现 404 错误,这在我的本地工作正常,将共享 webpack-dev 配置文件

The api requests are getting 404 error after one minute, which is working fine in my local, will be sharing the webpack-dev config file

devServer: {
    assetsSubDirectory: 'static',
    assetsPublicPath: '/',
    proxyTable: {
        '/api/**': {
            target: 'http://xyz.dev2.lokal:8888/',
            changeOrigin: true,
            proxyTimeout: 10 * 60 * 1000,
            onProxyReq: (proxyReq, req, res) => req.setTimeout(10 * 60 * 1000)
        }
    },

如何在我的 webpack.prod 配置中将 proxyTimeout 设置为目标 api 有时可能会有所不同。

是的,通过在 webpack 中进行更改,问题已在本地得到解决。 但是我们的App部署在nginx中,需要在实际服务器运行的机器上更改配置。 1.修改http部分超时相关的配置。 2.重新加载nginx 这些东西对我有用。

而 webpack 旨在帮助开发人员开发应用程序。