Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
40 views

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 ...
Lokesh B's user avatar
0 votes
0 answers
65 views

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 ...
Tirtha's user avatar
  • 97
1 vote
0 answers
49 views

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 ...
Aryan K.'s user avatar
0 votes
0 answers
64 views

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 ...
NoOne's user avatar
  • 19
0 votes
0 answers
42 views

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 ...
he0xWhale's user avatar
1 vote
0 answers
51 views

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....
yigal's user avatar
  • 4,925
1 vote
0 answers
579 views

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: ...
Dolphin's user avatar
  • 40.8k
0 votes
0 answers
29 views

I am developing a Vue 3 / Nuxt 3 application with Vite, Nitro and SSR. I have issues with understanding errors that happen on the server side when running the dev server. For testing purposes I am ...
Dawesign's user avatar
  • 773
1 vote
0 answers
51 views

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 ...
noontz's user avatar
  • 2,087
0 votes
0 answers
102 views

I recently migrated my Angular 17 project from Webpack to esbuild as the build tool. Since this change, I've encountered an issue with my production and sandbox builds. While the code appears masked (...
jessiepinkman's user avatar
0 votes
0 answers
14 views

If the value for 'filename' in the 'output' section of a webpack configuration is set to a name that ends in '.jsm', no source map file is stored in the output directory, even if the babel loader is ...
Joop Ringelberg's user avatar
1 vote
0 answers
77 views

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. ...
Brian Deterling's user avatar
0 votes
0 answers
71 views

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....
JRV's user avatar
  • 21
1 vote
1 answer
111 views

I generated a new Angular 18 project from scratch and brought over my components to take advantage of new option defaults and settings. I'm happy I did so, but I noticed that it now seems to be ...
Brian's user avatar
  • 740
0 votes
1 answer
108 views

Inline source maps when i build my angular project/app I seem to have some problems with my build configuration for angular I cannot to inline my source maps, What I've tried: I've so far tried to set ...
J.Down's user avatar
  • 773
0 votes
1 answer
38 views

When I create err = new Error("test-error") and console.log(err) I can see the stack mapped to the original sources using the sourcemap in the developer console. But when I read the err....
Witek's user avatar
  • 6,520
1 vote
0 answers
347 views

I'm trying to trace where errors occur in my code using Sentry. To achieve this, I'm uploading source maps to Sentry during the build stage in CodeBuild. In the post_build phase, I use these commands: ...
Haseeb Mirza's user avatar
0 votes
1 answer
63 views

I have a React application, and I've noticed that when I open Chrome Developer Tools and go to the Sources tab, I can see a folder named static/js. Expanding this folder reveals the entire code of my ...
 rocco's user avatar
  • 153
0 votes
1 answer
145 views

I have a custom Webpack loader where I'm traversing through the AST of the code using Babel to change the import name of a module. However, it seems like this is affecting the source maps of modules, ...
Saravanan's user avatar
  • 951
0 votes
0 answers
32 views

I have a C++ file that I'm compiling with g++ with the -ffile-prefix-map option. Is there a way to tell g++ to print the remapped file name when there are build errors? That way, clickable file names ...
The Bic Pen's user avatar
  • 1,227
0 votes
1 answer
1k views

When building the app using flutter build web --source-maps the generated source map file doesn't include information about the codes coming from packages. Is there a way to also include package ...
Amir M's user avatar
  • 396
1 vote
1 answer
349 views

I have a complex Terragrunt setup. Terragrunt fetches Terraform modules from a remote git repository. For development purposes, I would love to replace one of the remote modules with a local ...
lony's user avatar
  • 7,949
5 votes
0 answers
1k views

I'm working on a Next.js project (version 13.4.1) with Webpack (version 5.89.0) and encountering an issue where source maps are not being generated for my JavaScript chunk files in the production ...
Xeno's user avatar
  • 75
2 votes
0 answers
68 views

I've been trying to figure out ways to reduce our Angular app's bundle size, so I used source-map-explorer to figure out where the bundle size is coming from. When I looked at the output below, I ...
Matthew DeMichele's user avatar
2 votes
1 answer
769 views

Vite doesn't serve my transform sourcemaps even though they are available in the pipeline, I'm building a framework plugin and not able to get vite to correctly serve sourcemaps. Using vite-plugin-...
Marty Nelson's user avatar
0 votes
1 answer
229 views

We are using Azure Durable Functions with Typescript and the framework and runtime works great as such, but when a trigger or orchestration fails and throws an exception we are left scratching our ...
Almund's user avatar
  • 6,304
1 vote
0 answers
167 views

I'm working on a project involving multiple layers of code transformation, and I'm trying to understand how source map generation works in such a complex setup. Our project uses TypeScript, and on top ...
Alex Mazur's user avatar
-1 votes
1 answer
429 views

Suppose that I work in a project with react.js as a dependency. Now I add breakpoint in my own code and the breakpoint is triggered in chrome. Is there any way to step through original lines of code ...
seifeslimene's user avatar
0 votes
0 answers
54 views

I cannot set a breakpoint on executable lines in chrome dev tools as shown in the photo below. I should be able to set breakpoints on lines 75 and 78 but I cannot. I tried stopping the server, ...
Drew Gallagher's user avatar
0 votes
0 answers
170 views

I am using a ServiceWorker to intercept and serve .js files. The Chrome Developer Tools -> Sources tab is reporting a 404 error attempting to load the .map files for the .js files. The request for ...
Christian Stewart's user avatar
0 votes
0 answers
90 views

I'm trying to write a chrome extension to change the source map from which my page's source map is loaded. I hope to monitor the source map request initiated by chrome and add the Authorization ...
Xeikim's user avatar
  • 1
0 votes
0 answers
933 views

I have an Angular project that uses 3rd party software, from NGX Lightning. When I run the project in Chrome, and look through the Sources tab in the developer tools, I can only see the compiled main....
user2430230's user avatar
1 vote
0 answers
149 views

In vue/vite/rails stack sourcemap is completely off. Devtool showing incorrect line on error/debug. Can figure out what exactly causing issue. vite.config.ts: import {defineConfig} from "vite&...
Maxym Kopych's user avatar
0 votes
1 answer
160 views

I have a node app that is bundled with sourcemaps (inline or not makes no difference) using Rollup. When an error is thrown, I get something like Error: FF at Function.<anonymous> (/.../...
Maxime Dupré's user avatar
2 votes
1 answer
391 views

I am trying to get sourcemaps to work on an expo 49 project. the bugsnag docs say to add this to package.json "scripts": { ... "eas-build-on-success": "npx ...
Clark Taylor's user avatar
0 votes
0 answers
74 views

I'm having issues with using "sourceMaps": true in my tsconfig.json I currently have tsc set up so that src/services/database.ts generates dist/services/database.js and dist/services/...
andypaxo's user avatar
  • 6,709
-1 votes
1 answer
336 views

the project still have sourcemap file, using the typescript of version 4.7 Is there any way to reverse the code ? using the reverse-sourcemap not working, return the message of "Not all sources ...
wallenz's user avatar
1 vote
0 answers
66 views

I am trying to optimize an angular application and I am using Source Map Explorer to identify which part of my application is taking a lot of space. Command to build my angular project: ng build --...
Johar Zaman's user avatar
  • 2,123
0 votes
1 answer
622 views

Sentry's documentation explains how to upload sourcemaps to sentry by using the sentry-cli. But in my case I do not want to upload those to sentry, instead all my sourcemaps are stored right next to ...
HubertNNN's user avatar
  • 2,241
1 vote
2 answers
734 views

In Angular (see spec below), trying to generate a large library, thus running ng build <project>, we obtain ❌ Generating "fesm2015" Invalid string length Indeed, fesm2020 build ...
Deleter's user avatar
  • 812
1 vote
0 answers
119 views

Per the Source Map spec §6.2: There are two suggested ways to link source maps to the output. The first requires a server support to add a HTTP header and the second requires an annotation in the ...
wizzwizz4's user avatar
  • 6,521
1 vote
1 answer
110 views

I'm studying Gulp and trying to generate sourcemaps for my JavaScript file app.js, but sourcemaps generation isn't working as expected. I came across some old answers suggesting using the gulp-...
salsan's user avatar
  • 569
2 votes
1 answer
1k views

I am attempting to get debugging in vscode working for both my application and my lib for Angular 16 at the same time. The structure is as follows: ./root ./root/my-app/src ./root/lib/projects/my-lib ...
Mike's user avatar
  • 735
-3 votes
1 answer
309 views

The release notes from the newest (Aug 2023) VS Code release says: Source maps can now be automatically loaded from authenticated endpoints That's great! But to use this, we need some more info: ...
crimbo's user avatar
  • 11.4k
1 vote
1 answer
1k views

I had a script that ran eas update --branch <DEVELOPMENT> --non-interactive --auto --json and then called sentry-cli upload-sourcemaps to upload output of eas update to sentry. However, it ...
Andrius Juškevičius's user avatar
1 vote
0 answers
91 views

I'm developing a compiler that compiles to WebAssembly Text format (.wat) and want to include debug info. Is it feasible to include DWARF debug information within the .wat file, or is it more ...
Troels Lund's user avatar
1 vote
0 answers
1k views

I've been experimenting with the Chrome DevTools' local overrides feature to modify a specific JavaScript file on a website. However, I've run into an interesting situation that I need some guidance ...
Mithun's user avatar
  • 11
1 vote
1 answer
2k views

I'm working on a ReactJS (create-react-app) project. I do not generate source maps in my production build. But I still want to be able to unminify code for issues in production. In an attempt to ...
Madsadasd's user avatar
1 vote
0 answers
74 views

For some reason, the error outputs for my React project now point to the bundle and not to my code: Based on the linked post, I added the webpack.config.js file: module.exports = { devtool: '#...
AlwaysLearning's user avatar
1 vote
0 answers
265 views

first sorry if I write some bad english (not my native language). Im new in Nextjs and im using version 13.4 and for css i use SASS I have a problem with webpack. When I was using just react in dev on ...
JMrt's user avatar
  • 11

1
2 3 4 5
23