diff --git a/frontend/vite.config.js b/frontend/vite.config.js new file mode 100644 index 0000000..502ec18 --- /dev/null +++ b/frontend/vite.config.js @@ -0,0 +1,9 @@ +import { defineConfig } from 'vite'; +import react from '@vitejs/plugin-react'; +export default defineConfig({ + plugins: [react()], + server: { + host: true, + allowedHosts: ['govorov.itqop.pw', 'localhost'], + }, +});