12 lines
299 B
JavaScript
12 lines
299 B
JavaScript
|
import axios from "axios"
|
||
|
|
||
|
const apiKey = "sdJSmZpT518eOsNJUyiGNKGwjrcsQE1d"
|
||
|
|
||
|
export default axios.create({
|
||
|
baseURL: "http://localhost:3000/api/",
|
||
|
//timeout:1000,
|
||
|
headers: {
|
||
|
"Authorization": "Bearer " + apiKey,
|
||
|
"Content-type": "application/json; charset=UTF-8"
|
||
|
}
|
||
|
})
|