-
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 18 production build doesn't work with vendor source maps #28426
Comments
I'm sorry, but we can't reproduce the problem following the instructions you provided. Can you setup a minimal repro please? You can read here why this is needed. A good way to make a minimal repro is to create a new app via This might be related to your directory structure so its really important to get an accurate repro to diagnose this. |
Create a new app
navigate to path
Add source maps to the production config "configurations": {
"production": {
"sourceMap": {
"scripts": true,
"vendor": true
}
}
} run build
Navigate to dist path
Now run
|
any update on this? It's blocking us from debugging our apps. |
I think this was caused by a bug in esbuild which has been fixed in esbuild@0.25.1 and is resolved in Angular 19.2.2 (Pull Request). |
Can confirm. On update, sourcemaps are updating correctly in 19 now. Thank you. |
Which @angular/* package(s) are the source of the bug?
compiler-cli
Is this a regression?
Yes
Description
We upgraded our apps from ng17 to 18 and adopted the new build system. In our angular.json file we had options set to enable vendor source maps for production and regular builds. This worked fine prior to the upgrade. Example config below for references as I cannot post details from our work setup.
So when running ng serve with a production config the source maps for things like RX are debuggable without issue.
However when we run our release jobs using this command we find the disted app does not support loading source maps from node_modules. All other source maps seem to work fine .
I looked for a documented change here to see if vendor source maps are still supported in production builds and couldn't find anything about them being deprecated.
Please provide a link to a minimal reproduction of the bug
No response
Please provide the exception or error you saw
Please provide the environment you discovered this bug in (run
ng version
)Anything else?
No response
The text was updated successfully, but these errors were encountered: