Merge pull request #2459 from sbwalker/dev

Changed default service url in MAUI so users can immediately run client app
This commit is contained in:
Shaun Walker
2022-10-17 08:12:53 -04:00
committed by GitHub

View File

@ -12,7 +12,8 @@ namespace Oqtane.Maui;
public static class MauiProgram
{
// the API service url
static string apiurl = "http://localhost:44357";
static string apiurl = "https://www.oqtane.org"; // for testing
//static string apiurl = "http://localhost:44357"; // for local development (Oqtane.Server must be already running for MAUI client to connect)
public static MauiApp CreateMauiApp()
{