- Published on
A workaround for ‘proxy request’ errors in the Visual Studio 2022 Standalone Angular Template
It looks like the current version of the Visual Studio 2022 Standalone Angular Template will throw an error at runtime when you go with the default settings:
[HPM] Error occurred while trying to proxy request
/weatherforecast from localhost:4210 to https://localhost:5063
(EPROTO)
(https://nodejs.org/api/errors.html#errors_common_system_errors)
A workaround is to change the target in proxy.conf.js to from https://…
to http://…
.
const PROXY_CONFIG = [
{
context: ['/weatherforecast'],
target: 'http://localhost:5063',
secure: false,
},
]
module.exports = PROXY_CONFIG