server.config.ts 183 B

1234567891011
  1. import type { ServerOptions } from 'vite'
  2. const server: ServerOptions = {
  3. proxy: {
  4. '^/?api/': {
  5. target: 'http://192.168.10.41:7201',
  6. },
  7. },
  8. }
  9. export default server