chore: remove legacy deployment domains

This commit is contained in:
2026-05-06 14:33:34 -04:00
parent 5c0e40db7e
commit d59d667796
3 changed files with 1 additions and 5 deletions

View File

@@ -70,7 +70,6 @@ public static class DependencyInjection
{ {
authenticationBuilder.AddJwtBearer(JwtBearerDefaults.AuthenticationScheme, jwtBearerOptions => authenticationBuilder.AddJwtBearer(JwtBearerDefaults.AuthenticationScheme, jwtBearerOptions =>
{ {
jwtBearerOptions.Authority = "https://hutopy.com";
jwtBearerOptions.TokenValidationParameters = new TokenValidationParameters jwtBearerOptions.TokenValidationParameters = new TokenValidationParameters
{ {
ValidateIssuer = true, ValidateIssuer = true,

View File

@@ -2,9 +2,6 @@
"Stripe": { "Stripe": {
"SocializeRate": 0.05 "SocializeRate": 0.05
}, },
"Website": {
"FrontendBaseUrl": "https://socialize.mapachotes.com"
},
"LocalBlobStorage": { "LocalBlobStorage": {
"RootPath": "App_Data/blob-storage", "RootPath": "App_Data/blob-storage",
"RequestPath": "/api/storage" "RequestPath": "/api/storage"

View File

@@ -27,7 +27,7 @@ const disallowedRoutes = [
'/verify-email', '/verify-email',
]; ];
const siteUrl = (process.env.VITE_PUBLIC_SITE_URL ?? process.env.SITE_URL ?? 'https://socialize.mapachotes.com') const siteUrl = (process.env.VITE_PUBLIC_SITE_URL ?? process.env.SITE_URL ?? 'http://localhost:5173')
.replace(/\/$/, ''); .replace(/\/$/, '');
const distDir = resolve(process.cwd(), 'dist'); const distDir = resolve(process.cwd(), 'dist');