Skip to content
Merged
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
37 changes: 36 additions & 1 deletion src/BootstrapBlazor.Server/appsettings.Development.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,42 @@
}
},
"WebsiteOptions": {
"ServerUrl": "http://localhost:5053"
"ServerUrl": "http://localhost:5053",
"Themes": [
{
"key": "bootstrap",
"name": "Bootstrap",
"files": []
},
{
"key": "bule",
"name": "蓝色主题",
"files": [
"./css/blue.css"
]
},
{
"key": "ant",
"name": "Ant Design (完善中)",
"files": [
"./css/ant.css"
]
},
{
"key": "layui",
"name": "LayUI (完善中)",
"files": [
"./css/layui.css"
]
},
{
"key": "devui",
"name": "DevUI (制作中)",
"files": [
"./css/devui.css"
]
}
]
},
"BootstrapBlazorOptions": {
"ToastDelay": 4000,
Expand Down
4 changes: 0 additions & 4 deletions src/BootstrapBlazor.Server/appsettings.json
Original file line number Diff line number Diff line change
Expand Up @@ -75,10 +75,6 @@
},
"WebsiteOptions": {
"ServerUrl": "https://www.blazor.zone",
"AdminUrl": "https://admin.blazor.zone",
"ImageLibUrl": "https://imgs.blazor.zone",
"WasmUrl": "https://wasm.blazor.zone",
"TotalCount": 167,
"Themes": [
{
"key": "bootstrap",
Expand Down
5 changes: 0 additions & 5 deletions src/BootstrapBlazor.Shared/Data/WebsiteOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,6 @@ public class WebsiteOptions
/// </summary>
public string ServerUrl { get; set; } = "https://www.blazor.zone";

/// <summary>
///
/// </summary>
public string WasmUrl { get; set; } = "https://wasm.blazor.zone";

/// <summary>
///
/// </summary>
Expand Down
Loading