This commit is contained in:
itqop 2025-04-30 17:08:50 +02:00
parent 440c413152
commit 9ce8995436
1 changed files with 9 additions and 0 deletions

9
frontend/vite.config.js Normal file
View File

@ -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'],
},
});