mirror of
https://gitlab.com/MoonTestUse1/AdministrationItDepartmens.git
synced 2025-08-14 00:25:46 +02:00
25 lines
442 B
TypeScript
25 lines
442 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
import { defineConfig } from 'vite';
|
|
import vue from '@vitejs/plugin-vue';
|
|
import path from 'path';
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [vue()],
|
|
resolve: {
|
|
alias: {
|
|
'@': path.resolve(__dirname, './src'),
|
|
},
|
|
},
|
|
optimizeDeps: {
|
|
include: ['axios']
|
|
},
|
|
server: {
|
|
host: true,
|
|
port: 5173,
|
|
watch: {
|
|
usePolling: true
|
|
}
|
|
}
|
|
}); |