Add /vod and /exports to Vite proxy config

This commit is contained in:
tpjanssen 2023-11-06 10:57:10 +01:00
parent 89dd114da1
commit d34a03e3fe

View File

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