16 lines
409 B
JavaScript
16 lines
409 B
JavaScript
// vite.config.js
|
|
export default {
|
|
preview: {
|
|
host: '0.0.0.0', // Ensure preview server also listens on all interfaces
|
|
allowedHosts: [
|
|
'fwo4c4cgkos8k8kk8ow44kcc.reflectonai.com',
|
|
// Add other specific domains if needed, or localhost for local testing
|
|
'localhost'
|
|
]
|
|
},
|
|
server: {
|
|
// Also configure the dev server to accept external connections
|
|
host: '0.0.0.0'
|
|
}
|
|
};
|