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()], })