Skip to content

Commit

Permalink
feat: ignore list client injected sources (vitejs#12170)
Browse files Browse the repository at this point in the history
  • Loading branch information
bmeurer authored and futurGH committed Feb 26, 2023
1 parent 7a1f88b commit f8f2611
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions packages/vite/rollup.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ const envConfig = defineConfig({
sourcemapPathTransform(relativeSourcePath) {
return path.basename(relativeSourcePath)
},
sourcemapIgnoreList() {
return true
},
},
})

Expand All @@ -46,6 +49,9 @@ const clientConfig = defineConfig({
sourcemapPathTransform(relativeSourcePath) {
return path.basename(relativeSourcePath)
},
sourcemapIgnoreList() {
return true
},
},
})

Expand Down

0 comments on commit f8f2611

Please sign in to comment.