mirror of
https://github.com/ourongxing/newsnow.git
synced 2025-02-07 22:10:03 +08:00
10 lines
261 B
TypeScript
10 lines
261 B
TypeScript
|
import { $fetch } from "ofetch"
|
||
|
|
||
|
export const myFetch = $fetch.create({
|
||
|
headers: {
|
||
|
"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36",
|
||
|
},
|
||
|
timeout: 5000,
|
||
|
retry: 3,
|
||
|
})
|