mirror of
https://github.com/zyachel/libremdb.git
synced 2024-12-06 19:26:47 +01:00
9 lines
170 B
JavaScript
9 lines
170 B
JavaScript
const axios = require('axios').default;
|
|
|
|
const axiosInstance = axios.create({
|
|
baseURL: 'https://www.imdb.com/',
|
|
timeout: 500000,
|
|
});
|
|
|
|
module.exports = axiosInstance;
|