proxy for cors

This commit is contained in:
2021-12-20 18:14:59 +01:00
parent d0f83e6148
commit ba38d2b819
5 changed files with 47 additions and 5 deletions

11
proxy.mjs Normal file
View File

@@ -0,0 +1,11 @@
import httpProxy from 'http-proxy'
import http from 'http'
const proxy = httpProxy.createProxyServer({})
var server = http.createServer(function (req, res) {
const target = req.url.startsWith('/api/') ? 'http://localhost:5000' : 'http://localhost:3000'
proxy.web(req, res, { target })
})
server.listen(1234)