subida de version node

This commit is contained in:
2026-02-10 18:09:46 +01:00
parent db00c3ec89
commit af9bf29678
2 changed files with 4 additions and 0 deletions

View File

@@ -2,6 +2,9 @@
"name": "surtilatino-frontend-page", "name": "surtilatino-frontend-page",
"version": "0.1.0", "version": "0.1.0",
"private": true, "private": true,
"engines": {
"node": ">=20.9.0"
},
"scripts": { "scripts": {
"dev": "next dev", "dev": "next dev",
"build": "next build", "build": "next build",

View File

@@ -8,6 +8,7 @@ import { cn } from "@/lib/utils";
interface CatalogBrowserProps { interface CatalogBrowserProps {
initialProducts: Product[]; initialProducts: Product[];
categories: Category[]; categories: Category[];
} }