Not for everyone. Each programmer has their own appreciation of what is good coding music.
(From most influential to least)
const PROXY_CONFIG = { | |
"**": { | |
"target": "http://localhost:9000", | |
"secure": false, | |
"bypass": function (req) { | |
if (req && req.headers && req.headers.accept && req.headers.accept.indexOf("html") !== -1) { | |
console.log("Skipping proxy for browser request."); | |
return "/index.html"; | |
} | |
} |
Not for everyone. Each programmer has their own appreciation of what is good coding music.
(From most influential to least)