import {
defineConfig,
loadEnv,
} from 'vite';
import uni from '@dcloudio/vite-plugin-uni';
import vue from '@vitejs/plugin-vue';
import vueJsx from '@vitejs/plugin-vue-jsx';
export default defineConfig(({
command,
mode,
isSsrBuild,
isPreview
}) => {
const env = loadEnv(mode, process.cwd(), '');
console.log('==========env================', env)
const config = {
plugins: [vueJsx(), uni()],
// mode,
// base:'https://bar.com/foo/'
server: {
host: "localhost", // 指定服务器应该监听哪个IP地址,默认:localhost
port: 5173, // 指定开发服务器端口,默认:5173
proxy: { // 为开发服务器配置自定义代理规则
// // 带选项写法:http://localhost:5173/api/posts -> http://xxxxxxx.typicode.com/posts
"/h5api": {
target: "http://xxxxx.typicode.com", // 目标接口
changeOrigin: true, // 是否换源
rewrite: (path) => path.replace(/^\/h5api/, "")
}
}
}
};
if (command === 'serve') {
// dev 独有配置
return config;
} else {
// command === 'build'
// build 独有配置
return config;
}
})
0 个回复