9 lines
192 B
JavaScript
9 lines
192 B
JavaScript
import axios from 'axios';
|
|
|
|
/** base url to make requests to the the movie database */
|
|
const instance = axios.create({
|
|
baseURL: 'https://api.themoviedb.org/3',
|
|
});
|
|
|
|
export default instance;
|