Update page.tsx

This commit is contained in:
CanbiZ 2025-01-23 10:58:02 +01:00
parent ad2ea710a4
commit 9d46bd8f78

View File

@ -12,7 +12,8 @@ const CategoryView = () => {
useEffect(() => { useEffect(() => {
const fetchCategories = async () => { const fetchCategories = async () => {
try { try {
const response = await fetch("/api/categories"); const basePath = process.env.NODE_ENV === "production" ? "/ProxmoxVE" : ""; // Passe den Basis-Pfad an
const response = await fetch(`${basePath}/api/categories`);
if (!response.ok) { if (!response.ok) {
throw new Error("Failed to fetch categories"); throw new Error("Failed to fetch categories");
} }