MyFavStuff2/vite.config.js
2025-05-20 21:21:29 +02:00

12 lines
247 B
JavaScript

// vite.config.js
export default {
preview: {
// Allow ALL hosts - maximum flexibility for domain changes
allowedHosts: true
},
server: {
// Also configure the dev server to accept external connections
host: '0.0.0.0'
}
};