123456789101112131415161718 |
- /*
- * @Author: code4eat awesomedema@gmail.com
- * @Date: 2024-08-26 14:06:32
- * @LastEditors: code4eat awesomedema@gmail.com
- * @LastEditTime: 2024-08-26 14:25:50
- * @FilePath: /MediScreen/config/config.ts
- * @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
- */
- export default {
- proxy: {
- '/api': {
- target: 'http://120.27.235.181:5000',
- changeOrigin: true,
- pathRewrite: { '^/api': '' },
- },
- },
- };
-
|