Skip to content

Commit

Permalink
feat(templates): remove invalid entries from compilerconfig.json in B…
Browse files Browse the repository at this point in the history
…oilerplate #9899 (#9902)
  • Loading branch information
ysmoradi authored Feb 15, 2025
1 parent 8c548c5 commit bb18f22
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ public partial class HomePage
//#endif


//#if(module != "Sales")
protected override async Task OnInitAsync()
{
await base.OnInitAsync();

//#if(module != "Sales")
// If required, you should typically manage the authorization header for external APIs in **AuthDelegatingHandler.cs**
// and handle error extraction from failed responses in **ExceptionDelegatingHandler.cs**.

Expand All @@ -37,8 +37,8 @@ protected override async Task OnInitAsync()
// effectively addresses most scenarios.

await Task.WhenAll(LoadNuget(), LoadGitHub());
//#endif
}
//#endif

//#if(module != "Sales")
private async Task LoadNuget()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,24 +36,12 @@
"minify": { "enabled": false },
"options": { "sourceMap": false }
},
{
"outputFile": "Components/Layout/Modal.razor.css",
"inputFile": "Components/Layout/Modal.razor.scss",
"minify": { "enabled": false },
"options": { "sourceMap": false }
},
{
"outputFile": "Components/Layout/NavBar.razor.css",
"inputFile": "Components/Layout/NavBar.razor.scss",
"minify": { "enabled": false },
"options": { "sourceMap": false }
},
{
"outputFile": "Components/Layout/NavPanel.razor.css",
"inputFile": "Components/Layout/NavPanel.razor.scss",
"minify": { "enabled": false },
"options": { "sourceMap": false }
},
{
"outputFile": "Components/Layout/Prompt.razor.css",
"inputFile": "Components/Layout/Prompt.razor.scss",
Expand Down Expand Up @@ -90,7 +78,7 @@
"minify": { "enabled": false },
"options": { "sourceMap": false }
},
//#if (module == "Sample")
//#if (module == "Sales")
{
"outputFile": "Components/Pages/ProductPage.razor.css",
"inputFile": "Components/Pages/ProductPage.razor.scss",
Expand Down

0 comments on commit bb18f22

Please sign in to comment.