From 39f361149b10de87ad7503de7a9f2d15544d17d4 Mon Sep 17 00:00:00 2001 From: Isaac Aracena Date: Wed, 13 May 2026 13:11:25 -0400 Subject: [PATCH] =?UTF-8?q?Reorganizaci=C3=B3n=20de=20repositorio=20y=20aj?= =?UTF-8?q?uste=20de=20base=20path=20a=20/cruce-cuentas/?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .env.example | 2 +- .gitignore | 1 + dist/index.html | 27 +++++++++++++++------------ index.html | 25 ++++++++++++++----------- vite.config.js | 1 + 5 files changed, 32 insertions(+), 24 deletions(-) diff --git a/.env.example b/.env.example index cd5db8a..eb70002 100644 --- a/.env.example +++ b/.env.example @@ -4,4 +4,4 @@ VITE_FIREBASE_PROJECT_ID=tu_project_id VITE_FIREBASE_STORAGE_BUCKET=tu_storage_bucket VITE_FIREBASE_MESSAGING_SENDER_ID=tu_messaging_sender_id VITE_FIREBASE_APP_ID=tu_app_id -VITE_WEBHOOK_URL=http://localhost:5678/webhook-test/cruce-cuentas-fase5 +VITE_WEBHOOK_URL=https://tu-n8n-url.com/webhook/endpoint diff --git a/.gitignore b/.gitignore index 4842e6f..3a46b36 100644 --- a/.gitignore +++ b/.gitignore @@ -11,6 +11,7 @@ lerna-debug.log* node_modules/ # Build outputs +# dist/ (Explicitly allowed by boss) build/ dist-ssr/ diff --git a/dist/index.html b/dist/index.html index 66aae2a..5f6323b 100644 --- a/dist/index.html +++ b/dist/index.html @@ -1,14 +1,17 @@ - - - - - Cruce de Cuentas GLM - - - - -
- - + + + + + + Cruce de Cuentas GLM + + + + + +
+ + + \ No newline at end of file diff --git a/index.html b/index.html index 81384b5..fae4be3 100644 --- a/index.html +++ b/index.html @@ -1,13 +1,16 @@ - - - - - Cruce de Cuentas GLM - - -
- - - + + + + + + Cruce de Cuentas GLM + + + +
+ + + + \ No newline at end of file diff --git a/vite.config.js b/vite.config.js index 8b0f57b..7e3ccff 100644 --- a/vite.config.js +++ b/vite.config.js @@ -3,5 +3,6 @@ import react from '@vitejs/plugin-react' // https://vite.dev/config/ export default defineConfig({ + base: '/cruce-cuentas/', plugins: [react()], })