34 lines
865 B
JavaScript
34 lines
865 B
JavaScript
import { defineConfig } from 'vite'
|
|
import vue from '@vitejs/plugin-vue'
|
|
import { fileURLToPath, URL } from 'node:url'
|
|
|
|
// https://vite.dev/config/
|
|
export default defineConfig({
|
|
plugins: [vue()],
|
|
resolve: {
|
|
alias: {
|
|
'@': fileURLToPath(new URL('./src', import.meta.url))
|
|
}
|
|
},
|
|
server: {
|
|
host: '0.0.0.0',
|
|
proxy: {
|
|
'/tts-api': {
|
|
target: 'https://openspeech.bytedance.com',
|
|
changeOrigin: true,
|
|
rewrite: (path) => path.replace(/^\/tts-api/, '')
|
|
},
|
|
'/ark-api': {
|
|
target: 'https://ark.cn-beijing.volces.com',
|
|
changeOrigin: true,
|
|
rewrite: (path) => path.replace(/^\/ark-api/, '')
|
|
},
|
|
'/dashscope-api': {
|
|
target: 'https://dashscope.aliyuncs.com',
|
|
changeOrigin: true,
|
|
rewrite: (path) => path.replace(/^\/dashscope-api/, '')
|
|
}
|
|
}
|
|
}
|
|
})
|