Skip to content

Commit

Permalink
Increase WebPack dev-server proxy timeout. (#142)
Browse files Browse the repository at this point in the history
  • Loading branch information
tdilauro authored Nov 22, 2024
1 parent c3daa5d commit 1753953
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions webpack.dev-server.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -192,11 +192,11 @@ module.exports = (env) => {
return responseBuffer;
}
),
proxyTimeout: 5000,
proxyTimeout: 120000,
secure: false,
selfHandleResponse: true,
target: backend,
timeout: 5000,
timeout: 120000,
});

const config = merge(dev, {
Expand Down

0 comments on commit 1753953

Please sign in to comment.