Skip to content

[Blazor] Remove sourcemap link comments from production bundles for blazor.web.js and blazor.webassembly.js #62558

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion src/Components/Web.JS/rollup.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export default createBaseConfig({
'blazor.webview': './src/Boot.WebView.ts',
},
dir: __dirname,
updateConfig: (config, environment, _, input) => {
updateConfig: (config, environment, output, input) => {
config.plugins.push({
name: 'Resolve dotnet.js dynamic import',
resolveDynamicImport(source, importer) {
Expand All @@ -26,6 +26,9 @@ export default createBaseConfig({

if (input.includes("WebView")) {
config.output.sourcemap = 'inline';
} else if (environment === 'production' && (output === 'blazor.web' || output === 'blazor.webassembly')) {
// Generate sourcemaps but don't emit sourcemap link comments for production bundles
config.output.sourcemap = 'hidden';
} else {
config.output.sourcemap = true;
}
Expand Down
Loading