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

This commit is contained in:
tpjanssen
2023-11-06 06:44:53 -06:00
committed by GitHub
parent a482160691
commit 08777100b5
+6
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'
}
}
},