server.config.ts 343 B

1234567891011121314
  1. import type { ServerOptions } from 'vite'
  2. const server: ServerOptions = {
  3. proxy: {
  4. '^/?(api|file)/': {
  5. // target: 'http://192.168.10.41:8200',
  6. // target: 'http://192.168.10.107:8200',
  7. target: 'http://cet-test.markingtool.cn',
  8. // target: 'http://cet-dev.markingtool.cn:8200',
  9. },
  10. },
  11. }
  12. export default server