Files
jurong_circle_front_app/vite.config.js
2025-09-15 21:03:25 +08:00

15 lines
360 B
JavaScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import {
defineConfig
} from 'vite';
import uni from '@dcloudio/vite-plugin-uni';
export default defineConfig({
plugins: [uni()],
server: {
host: "0.0.0.0", // 指定服务器应该监听哪个IP地址,默认localhost
port: 5173, // 指定开发服务器端口,默认5173
proxy: { // 为开发服务器配置自定义代理规则
}
}
});