diff options
Diffstat (limited to 'app/services/api/api-config.ts')
-rw-r--r-- | app/services/api/api-config.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/services/api/api-config.ts b/app/services/api/api-config.ts index 3061563..b939c0e 100644 --- a/app/services/api/api-config.ts +++ b/app/services/api/api-config.ts @@ -1,7 +1,7 @@ // Use this import if you want to use "env.js" file // const { API_URL } = require("../../config/env") // Or just specify it directly like this: -const API_URL = "http://example.com" +const API_URL = 'http://example.com' /** * The options used to configure the API. @@ -22,6 +22,6 @@ export interface ApiConfig { * The default configuration for the app. */ export const DEFAULT_API_CONFIG: ApiConfig = { - url: API_URL || "https://jsonplaceholder.typicode.com", + url: API_URL || 'https://jsonplaceholder.typicode.com', timeout: 10000, } |