index.js 325 字节
Newer Older
6
628c9f991a7e4862742d8a2f 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13
import axios from 'axios';

// 创建一个 axios 实例
const request = axios.create({
    baseURL: 'https://openai.api2d.net',
    withCredentials: true,
    headers: {
        'Content-Type': 'application/json',
        'Authorization': 'Bearer fk186498-8FwkRSTv6gKo75npRdIIkLizDade6F4B'
    }
});

export default request