govite/frontend/vite.config.ts

9 lines
166 B
TypeScript
Raw Normal View History

2025-05-01 16:58:26 +07:00
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
export default defineConfig({
plugins: [vue()],
server: {
port: 3000
}
})