8 lines
235 B
TypeScript
8 lines
235 B
TypeScript
/**
|
|
* Application configuration values.
|
|
*
|
|
* This includes endpoints and other environment-specific settings.
|
|
*/
|
|
export const POCKETBASE_URL: string =
|
|
import.meta.env.VITE_POCKETBASE_URL || "/"; // Update as needed for deployment
|