wujingjing
2025-04-09 2b8b2cac4fe3f05474459a034bc4034f2d7aa0cb
vite.config.ts
@@ -62,9 +62,23 @@
         proxy: {
            '/events': {
               target: 'http://localhost:3000',
               changeOrigin: true
            }
         }
               changeOrigin: true,
            },
            /** @description 百度语音识别 */
            '/api/baidu/speech_recognition': {
               target: 'https://aip.baidubce.com/rpc/2.0/tts/v1',
               changeOrigin: true,
            },
            /** @description 百度语音合成 */
            '/api/baidu/speech_synthesis': {
               target: 'https://aip.baidubce.com/rpc/2.0/tts/v1',
               changeOrigin: true,
               rewrite: (path) => {
                  const newPath = path.replace('/api/baidu/speech_synthesis', '');
                  return newPath;
               },
            },
         },
      },
      build: {
         // outDir: 'dist/' + mode.mode,