mirror of
https://gitlab.com/MoonTestUse1/AdministrationItDepartmens.git
synced 2025-08-14 00:25:46 +02:00
18 lines
311 B
TypeScript
18 lines
311 B
TypeScript
import { defineConfig } from 'vite';
|
|
import vue from '@vitejs/plugin-vue';
|
|
|
|
export default defineConfig({
|
|
plugins: [vue()],
|
|
server: {
|
|
host: true,
|
|
port: 5173,
|
|
watch: {
|
|
usePolling: true
|
|
},
|
|
hmr: {
|
|
host: 'itformhelp.ru',
|
|
protocol: 'http',
|
|
clientPort: 80
|
|
}
|
|
}
|
|
}); |