server.config.ts 270 B

1234567891011121314
  1. import type { ServerOptions } from 'vite'
  2. import { loadEnv } from 'vite'
  3. const env = loadEnv('development', process.cwd(), '')
  4. const server: ServerOptions = {
  5. proxy: {
  6. '^/?(api|file)/': {
  7. target: env.VITE_APP_API_HOST,
  8. },
  9. },
  10. }
  11. export default server