16 lines
347 B
JavaScript
16 lines
347 B
JavaScript
import { defineConfig } from 'vite';
|
|
import react from '@vitejs/plugin-react';
|
|
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
server: {
|
|
host: '0.0.0.0',
|
|
port: 3000,
|
|
allowedHosts: ['177.73.177.75', 'localhost', '10.0.120.77', 'omnichannel-uat.sothistelecom.com'],
|
|
},
|
|
preview: {
|
|
host: '0.0.0.0',
|
|
port: 3000,
|
|
},
|
|
});
|