govite/frontend/vite.config.ts
2025-05-01 16:58:26 +07:00

9 lines
166 B
TypeScript
Executable File

import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
export default defineConfig({
plugins: [vue()],
server: {
port: 3000
}
})