feat: Actualizar configuraciones de API y mejorar tiempos de espera en nginx

This commit is contained in:
2026-04-01 16:12:03 -03:00
parent 293b69075a
commit 1f01a4a36b
7 changed files with 15 additions and 17 deletions
-4
View File
@@ -72,10 +72,6 @@ const nextConfig = {
source: '/question-bank/:path*',
destination: 'http://localhost:3001/question-bank/:path*',
},
{
source: '/test-templates/:path*',
destination: 'http://localhost:3001/test-templates/:path*',
},
{
source: '/knowledge-base/:path*',
destination: 'http://localhost:3001/knowledge-base/:path*',
+1 -4
View File
@@ -1,5 +1,4 @@
import type { Metadata } from "next";
import { Inter } from "next/font/google";
import "./globals.css";
import Link from "next/link";
import { AuthProvider } from "@/context/AuthContext";
@@ -9,8 +8,6 @@ import AuthGuard from "@/components/AuthGuard";
import { BrandingProvider } from "@/context/BrandingContext";
import { ThemeProvider } from "@/context/ThemeContext";
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Studio",
description: "Crea y gestiona contenido educativo de alta fidelidad.",
@@ -25,7 +22,7 @@ export default function RootLayout({
}>) {
return (
<html lang="es">
<body className={`${inter.className} min-h-screen flex flex-col transition-colors duration-300`}>
<body className="min-h-screen flex flex-col font-sans transition-colors duration-300">
<ThemeProvider>
<AuthProvider>
<I18nProvider>