kia-ml
Version:
Kia
16 lines (15 loc) • 436 B
JavaScript
// 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.
*/
/**
* The default configuration for the app.
*/
export const DEFAULT_API_CONFIG = {
url: API_URL || 'https://jsonplaceholder.typicode.com',
timeout: 10000
};
//# sourceMappingURL=api-config.js.map