mirror of
https://github.com/ThisIsBenny/wishlist-app.git
synced 2025-04-19 15:27:41 +00:00
7 lines
128 B
TypeScript
7 lines
128 B
TypeScript
interface apiConfig {
|
|
baseURL: string
|
|
}
|
|
|
|
export default <apiConfig>{
|
|
baseURL: import.meta.env.VITE_API_BASEURL || '/api',
|
|
}
|