install wizard should use RenderMode and Runtime values from appsettings.json when creating site

This commit is contained in:
sbwalker
2025-08-27 14:28:23 -04:00
parent 3b16ae8cc0
commit 2af02fae95

View File

@ -269,8 +269,8 @@
SiteName = Constants.DefaultSite, SiteName = Constants.DefaultSite,
Register = _register, Register = _register,
SiteTemplate = _template, SiteTemplate = _template,
RenderMode = RenderModes.Static, RenderMode = "", // provided by appsettings.json
Runtime = Runtimes.Server Runtime = "" // provided by appsettings.json
}; };
var installation = await InstallationService.Install(config); var installation = await InstallationService.Install(config);