Skip to content

Commit

Permalink
Update April 4, 2024
Browse files Browse the repository at this point in the history
=> Adds Kestrel;
=> Changes the loading for a splash screen experience
  • Loading branch information
rafael-figueiredo-alves committed Apr 5, 2024
1 parent 1755664 commit b12e0c8
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 8 deletions.
11 changes: 11 additions & 0 deletions Properties/launchSettings.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,17 @@
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
},
"Kestrel": {
"commandName": "Project",
"launchBrowser": true,
"launchUrl": "https://localhost:29802",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development",
"ASPNETCORE_URLS": "http://*:29801;https://*:29802"
},
"inspectUri": "{wsProtocol}://{url.hostname}:{url.port}/_framework/debug/ws-proxy?browser={browserInspectUri}",
"applicationUrl": "https://*:29802"
}
}
}
6 changes: 5 additions & 1 deletion eTasks-web.csproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly">
<Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly">

<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
Expand All @@ -17,4 +17,8 @@
<ServiceWorker Include="wwwroot\service-worker.js" PublishedContent="wwwroot\service-worker.published.js" />
</ItemGroup>

<ItemGroup>
<Folder Include="Components\" />
</ItemGroup>

</Project>
12 changes: 5 additions & 7 deletions wwwroot/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,14 @@

<body>
<div id="app">
<svg class="loading-progress">
<circle r="40%" cx="50%" cy="50%" />
<circle r="40%" cx="50%" cy="50%" />
</svg>
<div class="loading-progress-text"></div>

<div class="text-center align-middle">
<div class="d-flex justify-content-center align-items-center" style="height: 100vh; width: 100vw;">
<img src="assets/icon-192.png" />
<h1>eTasks</h1>
</div>

<footer class="fixed-bottom mb-2 text-center">
versão 2.0.0
</footer>
</div>

<div id="blazor-error-ui">
Expand Down

0 comments on commit b12e0c8

Please sign in to comment.