### Description 📖 When I run my site, I see client:736 GET http://127.0.0.1:3036/vite-dev/ net::ERR_CONNECTION_REFUSED ### Solution To vite.config.mts, add: ``` export default defineConfig({ server: { host: '127.0.0.1', }, ... } ```
Description 📖
When I run my site, I see
client:736 GET http://127.0.0.1:3036/vite-dev/ net::ERR_CONNECTION_REFUSED
Solution
To vite.config.mts, add: