Skip to content

Commit

Permalink
fix: Internal source maps can cause warnings in hosting packages
Browse files Browse the repository at this point in the history
Signed-off-by: Gordon Smith <[email protected]>
  • Loading branch information
GordonSmith committed Aug 8, 2024
1 parent 99bc173 commit 1a113ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion esbuild.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ function build(config) {
isDevelopment && console.log("Start: ", config.entryPoints[0], config.outfile);
return esbuild.build({
...config,
sourcemap: "linked",
sourcemap: "external",
plugins: [
...(config.plugins ?? []),
]
Expand Down

0 comments on commit 1a113ae

Please sign in to comment.