Add /vod and /exports to Vite proxy config (#8490)

This commit is contained in:
tpjanssen 2023-11-06 13:44:53 +01:00 committed by GitHub
parent a482160691
commit 08777100b5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13,6 +13,12 @@ export default defineConfig({
proxy: {
'/api': {
target: 'http://localhost:5000'
},
'/vod': {
target: 'http://localhost:5000'
},
'/exports': {
target: 'http://localhost:5000'
}
}
},