From 92f82a1e7289d3c4615da4919dd1600a25c842c0 Mon Sep 17 00:00:00 2001 From: Kar Date: Fri, 14 Feb 2025 14:25:34 +0000 Subject: [PATCH] using all not secure --- vite.config.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/vite.config.js b/vite.config.js index 8b0f57b..1a503ab 100644 --- a/vite.config.js +++ b/vite.config.js @@ -4,4 +4,8 @@ import react from '@vitejs/plugin-react' // https://vite.dev/config/ export default defineConfig({ plugins: [react()], + preview: { + allowedHosts: "all" + //allowedHosts: ["example.com"] + } })