Skip to content

Commit

Permalink
fix(@angular-devkit/build-angular): add support for vendor sourcemaps…
Browse files Browse the repository at this point in the history
… when using the dev-server

Prior to this change the vendor sourcemaps were never generated when using vite prebundling.

(cherry picked from commit 9926123)
  • Loading branch information
alan-agius4 committed Nov 15, 2023
1 parent 5267e60 commit 160a911
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ export async function* serveWithVite(
// Always enable JIT linking to support applications built with and without AOT.
// In a development environment the additional scope information does not
// have a negative effect unlike production where final output size is relevant.
{ sourcemap: true, jit: true },
{ sourcemap: true, jit: true, thirdPartySourcemaps: true },
1,
true,
);
Expand Down

0 comments on commit 160a911

Please sign in to comment.