mirror of
https://github.com/JefferyHcool/BiliNote.git
synced 2026-06-26 18:21:31 +08:00
9 lines
150 B
TypeScript
9 lines
150 B
TypeScript
import axios from 'axios'
|
|
|
|
const request = axios.create({
|
|
baseURL: '/api', // 默认请求路径前缀
|
|
timeout: 10000,
|
|
})
|
|
|
|
export default request
|