emcp/frontend/vite.config.ts
2026-05-18 09:12:14 +08:00

11 lines
181 B
TypeScript

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