Skip to content

Commit

Permalink
將Dev Page移動到 /dev-page
Browse files Browse the repository at this point in the history
  • Loading branch information
aa89227 committed Aug 18, 2023
1 parent 8dbc911 commit 62a650e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Client/Pages/Index.razor → Client/Pages/DevPage.razor
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@page "/"
@page "/dev-page"
<MudCard>
<MudCardHeader>
<CardHeaderContent>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

namespace Client.Pages;

public partial class Index
public partial class DevPage
{
private readonly List<User> users = new();
private readonly List<GameData> games = new();
Expand Down
4 changes: 2 additions & 2 deletions Client/Properties/launchSettings.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"dotnetRunMessages": true,
"launchBrowser": true,
"inspectUri": "{wsProtocol}://{url.hostname}:{url.port}/_framework/debug/ws-proxy?browser={browserInspectUri}",
"applicationUrl": "http://localhost:5184",
"applicationUrl": "http://localhost:5184/dev-page",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
Expand All @@ -22,7 +22,7 @@
"launchBrowser": true,
"inspectUri": "{wsProtocol}://{url.hostname}:{url.port}/_framework/debug/ws-proxy?browser={browserInspectUri}",
"applicationUrl": "https://localhost:7047;http://localhost:5184",
"launchUrl": "https://localhost:7047/",
"launchUrl": "https://localhost:7047/dev-page",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
Expand Down

0 comments on commit 62a650e

Please sign in to comment.