We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
serve
angular 16: build-angular:browser builder
build-angular:browser proxy config supported ways to ignore some paths with syntax !**/ just the changing of builder breaks this behavior.
diff in branches
https://github.com/GreedyA1/test16/tree/main - with application builder
No response
_ _ ____ _ ___ / \ _ __ __ _ _ _| | __ _ _ __ / ___| | |_ _| / △ \ | '_ \ / _` | | | | |/ _` | '__| | | | | | | / ___ \| | | | (_| | |_| | | (_| | | | |___| |___ | | /_/ \_\_| |_|\__, |\__,_|_|\__,_|_| \____|_____|___| |___/ Angular CLI: 17.1.0 Node: 20.11.0 Package Manager: npm 10.2.4 OS: darwin arm64 Angular: 17.1.0 ... animations, cli, common, compiler, compiler-cli, core, forms ... platform-browser, platform-browser-dynamic, router Package Version --------------------------------------------------------- @angular-devkit/architect 0.1701.0 @angular-devkit/build-angular 17.1.0 @angular-devkit/core 17.1.0 @angular-devkit/schematics 17.1.0 @schematics/angular 17.1.0 rxjs 7.8.1 typescript 5.3.3 zone.js 0.14.3
The text was updated successfully, but these errors were encountered:
The above proxy syntax is webpack-dev-server specific and is not handled by the underlying proxy package that is used by Vite.
You could use bypass which makes the proxy compatible with webpack-dev-server and vite.
bypass
const PROXY_CONFIG = [ { context: [ '/api/**', ], target: 'http://localhost:3000', secure: false, changeOrigin: true, logLevel: 'debug', bypass: function(req, res) { if (req.originalUrl.includes('/api/shmaybe')) { return req.originalUrl; } }, }, ] module.exports = PROXY_CONFIG
Sorry, something went wrong.
looks like I'm getting different results depending on builders.
That is due to #26917
This issue has been automatically locked due to inactivity. Please file a new issue if you are encountering a similar or related problem.
Read more about our automatic conversation locking policy.
This action has been performed automatically by a bot.
No branches or pull requests
Uh oh!
There was an error while loading. Please reload this page.
Command
serve
Is this a regression?
The previous version in which this bug was not present was
angular 16: build-angular:browser builder
Description
build-angular:browser proxy config supported ways to ignore some paths with syntax !**/
just the changing of builder breaks this behavior.
diff in branches

Minimal Reproduction
https://github.com/GreedyA1/test16/tree/main - with application builder
https://github.com/GreedyA1/test16/tree/browser-builder - branch with browser builder
Exception or Error
No response
Your Environment
Anything else relevant?
No response
The text was updated successfully, but these errors were encountered: