blob: b939c0e6d5bab32b6250e01504a26e57febd5852 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
// 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'
/**
* The options used to configure the API.
*/
export interface ApiConfig {
/**
* The URL of the api.
*/
url: string
/**
* Milliseconds before we timeout the request.
*/
timeout: number
}
/**
* The default configuration for the app.
*/
export const DEFAULT_API_CONFIG: ApiConfig = {
url: API_URL || 'https://jsonplaceholder.typicode.com',
timeout: 10000,
}
|