13 lines
288 B
TypeScript
13 lines
288 B
TypeScript
import { defineConfig } from 'vite';
|
|
import react from '@vitejs/plugin-react';
|
|
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
server: {
|
|
hmr: false,
|
|
host: '192.168.1.3',
|
|
allowedHosts: [
|
|
'my.patachina2.casacam.net' // 👈 aggiungi qui il tuo host
|
|
]
|
|
}
|
|
});
|