TheShopCritics2/TSC2/Components/Pages/Browse.razor.cs

10 lines
237 B
C#
Raw Normal View History

using TSC2.Components.Layout;
namespace TSC2.Components.Pages
{
public partial class Browse
{
public static readonly string baseUrl = MainLayout.isDev ? "https://localhost:7282/browse" : "https://theshopcritics.com/browse";
}
}