fix: seeder tables and marketplace api proxy configuration
This commit is contained in:
parent
30b8395639
commit
03a14b628b
1 changed files with 8 additions and 0 deletions
|
|
@ -4,4 +4,12 @@ import react from '@vitejs/plugin-react'
|
||||||
// https://vitejs.dev/config/
|
// https://vitejs.dev/config/
|
||||||
export default defineConfig({
|
export default defineConfig({
|
||||||
plugins: [react()],
|
plugins: [react()],
|
||||||
|
server: {
|
||||||
|
proxy: {
|
||||||
|
'/api': {
|
||||||
|
target: 'http://localhost:8214',
|
||||||
|
changeOrigin: true,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
})
|
})
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue