Skip to content

Commit

Permalink
feat: ignore list client injected sources (#12170)
Browse files Browse the repository at this point in the history
  • Loading branch information
bmeurer committed Feb 25, 2023
1 parent 7110ddf commit 8a98aef
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions packages/vite/rollup.config.ts
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 8a98aef

Please sign in to comment.