From 0667754add0b378d8096afc2243a50aeeeaab97c Mon Sep 17 00:00:00 2001 From: suroh Date: Fri, 6 Oct 2023 14:05:41 +0200 Subject: [PATCH] updated config to host on 0.0.0.0 for testing --- vite.config.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/vite.config.js b/vite.config.js index c48bc09..3d2a6d5 100644 --- a/vite.config.js +++ b/vite.config.js @@ -6,4 +6,7 @@ export default defineConfig({ sourcemap: true, target: [ 'esnext', 'edge100', 'firefox100', 'chrome100', 'safari18' ], }, + server: { + host: '0.0.0.0' + } })