From f375cd46e76cd6f9997d696f84830bf1ae382ae9 Mon Sep 17 00:00:00 2001 From: Daniel Haven <49914607+danielh-official@users.noreply.github.com> Date: Thu, 30 Oct 2025 20:40:27 -0400 Subject: [PATCH] Add vite.config.js for using 127.0.0.1 instead of localhost --- vanilla-js-example/vite.config.js | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 vanilla-js-example/vite.config.js diff --git a/vanilla-js-example/vite.config.js b/vanilla-js-example/vite.config.js new file mode 100644 index 0000000..ae3cdb4 --- /dev/null +++ b/vanilla-js-example/vite.config.js @@ -0,0 +1,8 @@ +// vite.config.js +import { defineConfig } from 'vite'; + +export default defineConfig({ + server: { + host: '127.0.0.1', // Or '0.0.0.0' + }, +}); \ No newline at end of file