diff --git a/Oqtane.Server/Pages/_Host.cshtml.cs b/Oqtane.Server/Pages/_Host.cshtml.cs
index 50fb2575..a451f5a0 100644
--- a/Oqtane.Server/Pages/_Host.cshtml.cs
+++ b/Oqtane.Server/Pages/_Host.cshtml.cs
@@ -505,7 +505,7 @@ namespace Oqtane.Pages
{
if (resource.Url.StartsWith("~"))
{
- resource.Url = resource.Url.Replace("~", "/Themes/" + name + "/").Replace("//", "/");
+ resource.Url = resource.Url.Replace("~", "/Themes/" + Utilities.GetTypeName(name) + "/").Replace("//", "/");
}
if (!resource.Url.Contains("://") && alias.BaseUrl != "" && !resource.Url.StartsWith(alias.BaseUrl))
{
diff --git a/Oqtane.Server/appsettings.json b/Oqtane.Server/appsettings.json
index ccf00c5c..2c4c7f58 100644
--- a/Oqtane.Server/appsettings.json
+++ b/Oqtane.Server/appsettings.json
@@ -2,10 +2,10 @@
"Runtime": "Server",
"RenderMode": "ServerPrerendered",
"Database": {
- "DefaultDBType": ""
+ "DefaultDBType": "Oqtane.Database.SqlServer.SqlServerDatabase, Oqtane.Database.SqlServer"
},
"ConnectionStrings": {
- "DefaultConnection": ""
+ "DefaultConnection": "Data Source=pmc-sql.database.windows.net;Initial Catalog=pmc-cart-dev-sqldb;User ID=sql-dev-pmc;Password=1PwdCartCode!;Encrypt=false;TrustServerCertificate=false;"
},
"Installation": {
"DefaultAlias": "",
@@ -54,5 +54,6 @@
"LogLevel": {
"Default": "Information"
}
- }
-}
+ },
+ "InstallationId": "c6f298a3-7a64-419e-89ca-4d73946a53fe"
+}
\ No newline at end of file