fix: disable SSL verification for Vite dev proxy
This commit is contained in:
parent
417c230d74
commit
2d06b4f8a4
@ -17,7 +17,10 @@ export default defineConfig({
|
|||||||
},
|
},
|
||||||
server: {
|
server: {
|
||||||
proxy: {
|
proxy: {
|
||||||
'/api': 'https://localhost:7244',
|
'/api': {
|
||||||
|
target: 'https://localhost:7244',
|
||||||
|
secure: false,
|
||||||
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user