Update nginx routes

This commit is contained in:
LukeGus
2025-08-09 00:57:15 -05:00
parent c69e03d783
commit 30b07ba8f2
4 changed files with 5 additions and 17 deletions

View File

@@ -20,10 +20,7 @@ function getCookie(name: string) {
}, "");
}
const apiBase =
typeof window !== "undefined" && window.location.hostname === "localhost"
? "http://localhost:8081/users"
: "/users";
const apiBase = import.meta.env.DEV ? "http://localhost:8081/users" : "/users";
const API = axios.create({
baseURL: apiBase,

View File

@@ -19,10 +19,7 @@ function getCookie(name: string) {
}, "");
}
const apiBase =
typeof window !== "undefined" && window.location.hostname === "localhost"
? "http://localhost:8081/users"
: "/users";
const apiBase = import.meta.env.DEV ? "http://localhost:8081/users" : "/users";
const API = axios.create({
baseURL: apiBase,

View File

@@ -59,10 +59,7 @@ function getCookie(name: string) {
}, "");
}
const apiBase =
typeof window !== "undefined" && window.location.hostname === "localhost"
? "http://localhost:8081/users"
: "/users";
const apiBase = import.meta.env.DEV ? "http://localhost:8081/users" : "/users";
const API = axios.create({
baseURL: apiBase,

View File

@@ -50,10 +50,7 @@ interface VersionResponse {
cache_age?: number;
}
const apiBase =
typeof window !== "undefined" && window.location.hostname === "localhost"
? "http://localhost:8081"
: "";
const apiBase = import.meta.env.DEV ? "http://localhost:8081" : "";
const API = axios.create({
baseURL: apiBase,
@@ -70,7 +67,7 @@ export function HomepageUpdateLog({loggedIn}: HomepageUpdateLogProps) {
setLoading(true);
Promise.all([
API.get('/releases/rss?per_page=100'),
API.get('/version')
API.get('/version/')
])
.then(([releasesRes, versionRes]) => {
setReleases(releasesRes.data);