У страницы два метода: GET И POST. Нужно чтобы перенаправление запроса работало только для POST.
Как это сделать?
Нашёл такой код, но не работает
// Serve the Relay app
const compiler = webpack(config);
appServer = new WebpackDevServer(compiler, {
contentBase: '/public/',
proxy: {
'/login': {
target: `http://localhost:${GRAPHQL_PORT}`, // only for POST?
bypass: function(req, res, proxyOptions) {
if(req.method != 'POST') return false;
}
}
},
publicPath: '/js/',
stats: {
colors: true,
chunks: false,
},
historyApiFallback: true
});
получаю ошибку
The "chunk" argument must be of type string or an instance of Buffer or Uint8Array. Received type number (404)