Files
ai/user-app/vite.config.ts
T
2026-06-15 17:45:28 +08:00

11 lines
219 B
TypeScript

import { defineConfig } from 'vite';
import vue from '@vitejs/plugin-vue';
export default defineConfig({
plugins: [vue()],
server: {
host: '0.0.0.0',
port: Number(process.env.USER_APP_PORT ?? 5174)
}
});