-
Notifications
You must be signed in to change notification settings - Fork 12k
New issue
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
Angular CLI messes up proxy.conf.js regex proxy -settings passed to Vite when using esbuild #26970
Comments
…s in proxy config when using Vite This commit enables proxies to have a RegExp as context when using Vite. See: https://vitejs.dev/config/server-options#server-proxy Closes angular#26970
…s in proxy config when using Vite This commit enables proxies to have a RegExp as context when using Vite. See: https://vitejs.dev/config/server-options#server-proxy Closes angular#26970
…s in proxy config when using Vite This commit enables proxies to have a RegExp as context when using Vite. See: https://vitejs.dev/config/server-options#server-proxy Closes angular#26970
…xy config when using Vite This commit enables proxies to have a RegExp as context when using Vite. See: https://vitejs.dev/config/server-options#server-proxy Closes angular#26970
…xy config when using Vite This commit enables proxies to have a RegExp as context when using Vite. See: https://vitejs.dev/config/server-options#server-proxy Closes angular#26970
… proxy config when using vite This commit fixes an issue were negated globs in proxy config were not process correctly when using vite. Closes angular#26970
… proxy config when using vite This commit fixes an issue were negated globs in proxy config were not process correctly when using vite. Closes angular#26970
… proxy config when using vite This commit fixes an issue were negated globs in proxy config were not process correctly when using vite. Closes angular#26970
… proxy config when using vite This commit fixes an issue were negated globs in proxy config were not process correctly when using vite. Closes angular#26970
… proxy config when using vite This commit fixes an issue were negated globs in proxy config were not process correctly when using vite. Closes angular#26970
… proxy config when using vite This commit fixes an issue were negated globs in proxy config were not process correctly when using vite. Closes #26970
Both the negation configuration option and the regular expression option will be available in the next patch release. |
…xy config when using Vite This commit enables proxies to have a RegExp as context when using Vite. See: https://vitejs.dev/config/server-options#server-proxy Closes angular#26970
…xy config when using Vite This commit enables proxies to have a RegExp as context when using Vite. See: https://vitejs.dev/config/server-options#server-proxy Closes #26970
…xy config when using Vite This commit enables proxies to have a RegExp as context when using Vite. See: https://vitejs.dev/config/server-options#server-proxy Closes #26970 (cherry picked from commit 822e7a4)
Thanks for the fix! |
This issue has been automatically locked due to inactivity. Read more about our automatic conversation locking policy. This action has been performed automatically by a bot. |
Command
serve
Is this a regression?
The previous version in which this bug was not present was
No response
Description
Angular CLI messes up proxy.conf.js regex proxy -settings passed to Vite when using esbuild.
^\\/(?!hui).*
becomes\^\/(?!hui)\.[^/]*?\/?
Minimal Reproduction
Vite doesn't seem to support glob patterns in proxy.conf.js. It supports regular expressions which would do fine but Angular CLI proxy configuration normalization messes up regular expressions. Normalization is done here:
https://github.com/angular/angular-cli/blob/main/packages/angular_devkit/build_angular/src/utils/load-proxy-config.ts
This step perhaps mistakenly treats regular expressions as globs:
Previously with @angular-devkit/build-angular:browser we had:
With @angular-devkit/build-angular:browser-esbuild something like this should be equivalent if the configuration would go to Vite without changes:
Exception or Error
No response
Your Environment
Anything else relevant?
No response
The text was updated successfully, but these errors were encountered: