From 88011d2f10b1c74f0e27090f10a21f43d35c2892 Mon Sep 17 00:00:00 2001 From: NicolasCantu Date: Thu, 23 Oct 2025 12:54:08 +0200 Subject: [PATCH] fix: autoriser dev3.4nkweb.com dans allowedHosts MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🔧 Correction configuration Vite: - Ajout de dev3.4nkweb.com dans allowedHosts - Ajout de localhost, 127.0.0.1, 31.33.24.235 - Résolution erreur 'Blocked request' pour dev3.4nkweb.com - Serveur accessible depuis tous les hosts autorisés --- vite.config.ts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/vite.config.ts b/vite.config.ts index a7ebcb4..f2f5c53 100755 --- a/vite.config.ts +++ b/vite.config.ts @@ -22,6 +22,13 @@ export default defineConfig({ cachedChecks: false, }, port: 3004, + host: '0.0.0.0', + allowedHosts: [ + 'dev3.4nkweb.com', + 'localhost', + '127.0.0.1', + '31.33.24.235' + ], proxy: { '/storage': { target: 'https://dev3.4nkweb.com',