1,121 questions
Score of 2
1 answer
102 views
Chrome DevTools source file not focusing when breakpoint hits in Angular 19 with Webpack 4.47.0
Environment:
- Angular Version: 19.2.6
- Angular CLI: 19.2.7
- Chrome Version: 146.0.7680.165
- Node: 20.17.0
- OS: Windows 10 x64
- Webpack: 4.47.0
Problem:
When debugging Angular 19 project in ...
Score of -6
1 answer
75 views
Identifying original script file from minified name in Zoho CRM [closed]
I’m working on a Zoho CRM customization and I can see the client-side scripts in the browser, but they’re all showing up as minified filenames. Even with source maps, I’m not able to identify the ...
Score of 1
1 answer
432 views
How best to debug/fix sourcemaps not getting generated in a NextJS monorepo using Turbopack
I'm seeing an issue were some sourcemaps aren't getting generated in a NextJS application and I'm not sure how to debug it.
We deploy to Vercel and upload sourcemaps to Sentry, the sourcemaps that get ...
Score of 6
3 answers
3399 views
Next.js source maps error "Invalid source map. Only conformant source maps can be used to find the original code"
I've got a Next.js 16.0.6 app that I installed with npx create-next-app@latest my-app following the documentation. It came with TypeScript ^5 (from what I can see in the lock file it's v5.9.3).
Got ...
Score of 0
0 answers
49 views
VS Code Chrome Debugger Opens Wrong File Path
I'm trying to debug an Angular application in VS Code using Chrome DevTools Protocol, but the debugger is opening files in the wrong location due to URL path mapping issues.
Angular dev server running ...
Score of 0
0 answers
97 views
How to configure urlPrefix in @sentry/vite-plugin to map CDN-served assets to Sentry sourcemaps in Nuxt 3 + Vue 3
I'm building a Nuxt 3 application (using Vue 3 and Vite as the default builder) and integrating Sentry for error monitoring with sourcemap uploads. My build artifacts are uploaded to a CDN (e.g., AWS ...
Score of 0
0 answers
124 views
Alloy sourcemap integration not resolving minified Angular stacktrace
I’m trying to configure Grafana Alloy to resolve my Angular application’s stack traces using source maps, but the mapping isn’t working as expected. Even though I have the sourcemaps downloaded ...
Score of 1
0 answers
66 views
NPX gulp generated sourcemaps keep changing line endings (CRLF vs LF)
I'm running into a recurring problem after running npx gulp to initiate the build process (scss -> css builds).
After each initialisation run,Git shows that a huge number of .css.map files have ...
Score of 0
0 answers
105 views
How to extract debundled JavaScript files via CDP or Playwright
I've been trying to programmatically extract the original, debundled JavaScript source files behind a web app that uses Webpack bundles and source maps. While Chrome DevTools clearly shows the ...
Score of 0
0 answers
50 views
VS Code debugger shows incorrect step-over order for TypeScript, but actual execution is correct
I'm experiencing a very strange debugging issue in VS Code while developing an extension, and I've exhausted all my debugging knowledge.
The Problem
When step-over debugging my TypeScript code, the ...
Score of 1
0 answers
56 views
js sourcemap that maps a to t.a
I am developing a js code converter. here is a(much simplified) example input.js
let a=5
let b=6
const result = a + b;
console.log(result)
and the corresponding output.js
const t={}
t.a=5
t.b=6
t....
Score of 1
0 answers
813 views
The browser did not load Source map when using Vite to build the output
I have enable the source map when using vite "vite": "^5.4.18" to build the react project like this:
build: {
outDir: "build",
sourcemap: true,
rollupOptions: ...
Score of 1
0 answers
65 views
How to make VS code load sourcemaps from an ASP.NET Core app
I am trying to hit breakpoints in VS code when serving an SPA from an ASP.NET Core app.
The SPA is built with webpack and placed in the ${workspaceFolder}/build folder.
The content is then copied to ...
Score of 1
0 answers
89 views
Getting incorrect line number from source-map for React component
I'm struggling to make sense of source map for a next.js app. My goal is to be able to remotely log a client error and determine where it came from in the source. I'm using the source-map npm library. ...
Score of 0
0 answers
83 views
Source maps not generating in production
I am able to see the source maps when I run the application locally i.e "npm start". Even it points to the exact line of exception.
But when I run "npm run make" and open the myApp....