diff --git a/src/BootstrapBlazor.Server/appsettings.Development.json b/src/BootstrapBlazor.Server/appsettings.Development.json
index 8f81fbe4fa3..a2e3541fb37 100644
--- a/src/BootstrapBlazor.Server/appsettings.Development.json
+++ b/src/BootstrapBlazor.Server/appsettings.Development.json
@@ -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,
diff --git a/src/BootstrapBlazor.Server/appsettings.json b/src/BootstrapBlazor.Server/appsettings.json
index e4f5a4d51b9..33219794af4 100644
--- a/src/BootstrapBlazor.Server/appsettings.json
+++ b/src/BootstrapBlazor.Server/appsettings.json
@@ -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",
diff --git a/src/BootstrapBlazor.Shared/Data/WebsiteOptions.cs b/src/BootstrapBlazor.Shared/Data/WebsiteOptions.cs
index acd69d0b3b9..52f283ba34e 100644
--- a/src/BootstrapBlazor.Shared/Data/WebsiteOptions.cs
+++ b/src/BootstrapBlazor.Shared/Data/WebsiteOptions.cs
@@ -15,11 +15,6 @@ public class WebsiteOptions
///
public string ServerUrl { get; set; } = "https://www.blazor.zone";
- ///
- ///
- ///
- public string WasmUrl { get; set; } = "https://wasm.blazor.zone";
-
///
///
///