govorov/frontend/vite.config.ts

11 lines
219 B
TypeScript
Raw Normal View History

2025-04-07 09:02:54 +02:00
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
export default defineConfig({
plugins: [react()],
2025-04-17 16:10:37 +02:00
server: {
host: true,
allowedHosts: ['govorov.itqop.pw', 'localhost'],
},
2025-04-07 09:02:54 +02:00
})