Files
zjjk/frontend/vite.config.ts

11 lines
181 B
TypeScript
Raw Normal View History

2026-03-20 21:47:30 +08:00
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
export default defineConfig({
plugins: [vue()],
server: {
host: '127.0.0.1',
port: 9000
}
})