added the api for the real data
This commit is contained in:
@@ -17,7 +17,18 @@ export default defineConfig({
|
||||
port: 3001,
|
||||
strictPort: true,
|
||||
host: true,
|
||||
open: true
|
||||
open: true,
|
||||
// Proxy API calls through Vite so the browser makes same-origin requests.
|
||||
// This sidesteps the backend's localhost-only CORS allowlist entirely —
|
||||
// works whether you open the app on localhost, a LAN IP, or a hostname.
|
||||
proxy: {
|
||||
// Change `target` if you point the dev app at a different backend.
|
||||
'/api': {
|
||||
target: 'https://api.doormile.com',
|
||||
changeOrigin: true,
|
||||
secure: true
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user