-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathvite.config.ts
57 lines (57 loc) · 1.39 KB
/
vite.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
import { defineConfig, loadEnv } from 'vite'
import react from '@vitejs/plugin-react'
import path from "path"
import { viteStaticCopy } from 'vite-plugin-static-copy'
export default defineConfig((env) => {
const viteEnv = loadEnv(env.mode, process.cwd()) as unknown as ImportMeta
return {
plugins: [
react(),
viteStaticCopy({
targets: [
{
src: 'node_modules/@ricky0123/vad-web/dist/vad.worklet.bundle.min.js',
dest: 'assets'
},
{
src: 'node_modules/@ricky0123/vad-web/dist/*.onnx',
dest: 'assets'
},
{
src: 'node_modules/onnxruntime-web/dist/*.wasm',
dest: 'assets'
},
{
src: 'node_modules/onnxruntime-web/dist/*.mjs',
dest: 'assets'
}
]
})
],
optimizeDeps: {
exclude: ['onnxruntime-web']
},
server: {
host: '0.0.0.0',
port: 1002,
open: false,
proxy: {
'/api': {
target: viteEnv.VITE_APP_API_BASE_URL,
changeOrigin: true, // 允许跨域
rewrite: path => path.replace('/api/', '/'),
},
},
},
build: {
commonjsOptions: {
include: [/onnxruntime-web/, /node_modules/]
}
},
resolve: {
alias: {
"@": path.resolve(process.cwd(), "./src"),
},
},
}
})