diff --git a/Makefile b/Makefile index 4d0d267..59c057b 100644 --- a/Makefile +++ b/Makefile @@ -39,3 +39,10 @@ sync-to-gitea: git push gitea --all git push gitea --tags @echo "Synchronization to Gitea complete." + + +# Declaramos el target como PHONY ya que no corresponde a un archivo real (opcional pero recomendado) + +.PHONY: UI +UI: + cd ui && ( if not exist node_modules npm install ) && npm run dev diff --git a/ui/src/stores/useUI.js b/ui/src/stores/useUis.js similarity index 100% rename from ui/src/stores/useUI.js rename to ui/src/stores/useUis.js