where am I supposed to connect when I proxy to an third domain like that ?
module.exports = {
...
devServer: {
proxy: {
"/": {
target: "http://www.example.org",
},
changeOrigin: true
}
}
...
}
shouldn't localhost:8080
show http://www.example.org
content ?
because I get a 404 page... (the same is true with other sites, I get not-founds, or even apache install pages!)