16 Commits
Author SHA1 Message Date
roberto.silva 6484795c3c Merge remote-tracking branch 'origin/build' 2026-01-07 07:35:09 -06:00
Guillermo.Arrieta cc3dd28137 Merge branch 'build' of https://github.lci.ulsa.mx/Guillermo.Arrieta/acad-ia-2 into build 2026-01-06 16:33:28 -06:00
Guillermo.Arrieta 2e425061c3 algo 2026-01-06 16:33:24 -06:00
alexrg 13f5072110 Añadir nginx.conf 2026-01-06 22:22:51 +00:00
alexrg d93c10e88e Actualizar Dockerfile 2026-01-06 22:21:57 +00:00
alexrg ae8cd423d9 Actualizar Staticfile 2026-01-06 22:05:38 +00:00
alexrg 0a827f3763 Eliminar nginx.conf 2026-01-06 22:05:07 +00:00
alexrg 1ad0e63e9b Añadir nginx.conf 2026-01-06 21:50:36 +00:00
alexrg d645db721b Actualizar Staticfile 2026-01-06 21:43:07 +00:00
alexrg 9bcb18e2b6 Actualizar nixpacks.toml 2026-01-06 21:41:47 +00:00
alexrg efa8f1f5fa Actualizar nixpacks.toml 2026-01-06 21:39:24 +00:00
alexrg 9080d7a277 Actualizar nixpacks.toml 2026-01-06 21:38:14 +00:00
alexrg aff5d977ea Actualizar nixpacks.toml 2026-01-06 21:33:17 +00:00
roberto.silva 9b778c9627 Se agrega _redirects 2026-01-06 14:46:49 -06:00
Guillermo.Arrieta 9420fde5bf Actualizar src/components/ui/input.tsx 2026-01-06 20:04:42 +00:00
Guillermo.Arrieta 45c8fe1cf3 build sin typecheck 2026-01-06 14:01:23 -06:00
5 changed files with 23 additions and 2 deletions
+10
View File
@@ -0,0 +1,10 @@
FROM oven/bun:1 AS build
WORKDIR /app
COPY . .
RUN bun install --frozen-lockfile
RUN bunx --bun vite build
FROM nginx:alpine
COPY nginx.conf /etc/nginx/conf.d/default.conf
COPY --from=build /app/dist /usr/share/nginx/html
EXPOSE 80
+11
View File
@@ -0,0 +1,11 @@
server {
listen 80;
server_name _;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ /index.html;
}
}
+1 -1
View File
@@ -2,4 +2,4 @@
cmds = ["bun install --frozen-lockfile"]
[phases.build]
cmds = ["bun run build"]
cmds = ["bunx --bun vite build"]
+1 -1
View File
@@ -58,7 +58,7 @@ function RouteComponent() {
className="group text-muted-foreground hover:text-primary flex items-center gap-1.5 text-sm font-medium transition-colors"
>
<span>Ver todos</span>
{/* La flecha se mueve a la derecha al hacer hover en el grupo */}
{/* La flecha se mueve a la derecha al hacer hover en el grupoo */}
<ArrowRight className="h-4 w-4 transition-transform duration-300 group-hover:translate-x-1" />
</a>
</div>