6 lines
105 B
JavaScript
6 lines
105 B
JavaScript
//请求拦截器
|
|
module.exports = (config) => {
|
|
// 在发送请求之前做些什么
|
|
return config;
|
|
}
|