vite#ProxyOptions TypeScript Examples

The following examples show how to use vite#ProxyOptions. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: setupProxy.ts    From ant-simple-draw with MIT License 6 votes vote down vote up
proxy: Record<string, string | ProxyOptions> = {
  // 字符串简写写法
  '/foo': 'http://localhost:4567',
  // 选项写法
  '/api': {
    target: 'http://jsonplaceholder.typicode.com',
    changeOrigin: true,
    rewrite: (path) => path.replace(/^\/api/, ''),
    // 更多请参看:https://cn.vitejs.dev/config/#server-proxy
  },
}