mirror of
https://github.com/xxxsf/vue3-h5-template.git
synced 2025-04-05 04:12:45 +08:00
21 lines
597 B
TypeScript
21 lines
597 B
TypeScript
import { API_BASE_URL, API_TARGET_URL, MOCK_API_BASE_URL, MOCK_API_TARGET_URL } from '../../config/constant';
|
|
import { ProxyOptions } from 'vite';
|
|
type ProxyTargetList = Record<string, ProxyOptions>;
|
|
|
|
const init: ProxyTargetList = {
|
|
// test
|
|
[API_BASE_URL]: {
|
|
target: API_TARGET_URL,
|
|
changeOrigin: true,
|
|
rewrite: (path) => path.replace(new RegExp(`^${API_BASE_URL}`), ''),
|
|
},
|
|
// mock
|
|
[MOCK_API_BASE_URL]: {
|
|
target: MOCK_API_TARGET_URL,
|
|
changeOrigin: true,
|
|
rewrite: (path) => path.replace(new RegExp(`^${MOCK_API_BASE_URL}`), '/api'),
|
|
},
|
|
};
|
|
|
|
export default init;
|