Skip to content

Commit

Permalink
Test comment out logic
Browse files Browse the repository at this point in the history
  • Loading branch information
skrustev committed Nov 21, 2024
1 parent 4cf28c6 commit 9941850
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions browser/IgBlazorSamples.Gulp/tasks/gulp-samples.js
Original file line number Diff line number Diff line change
Expand Up @@ -466,13 +466,13 @@ function copySampleScripts(cb, outputPath, indexName, isLocalBuild) {

for (let i = 0; i < indexLines.length; i++) {
if (indexLines[i].indexOf('<base href') > 0) {
if (isLocalBuild) {
log('updating <base href="/" /> ');
indexLines[i] = ' <base href="/" />';
} else {
log('updating <base href="/blazor-client/" /> ');
indexLines[i] = ' <base href="/blazor-client/" />';
}
// if (isLocalBuild) {
// log('updating <base href="/" /> ');
// indexLines[i] = ' <base href="/" />';
// } else {
// log('updating <base href="/blazor-client/" /> ');
// indexLines[i] = ' <base href="/blazor-client/" />';
// }
break;
}
}
Expand Down

0 comments on commit 9941850

Please sign in to comment.