2023-11-17 08:45:00 +08:00
|
|
|
import { ofetch } from 'ofetch';
|
|
|
|
import type { FetchOptions } from 'ofetch';
|
|
|
|
|
2024-01-16 01:50:12 +08:00
|
|
|
export function createRequest(options: FetchOptions) {
|
2023-11-17 08:45:00 +08:00
|
|
|
const request = ofetch.create(options);
|
|
|
|
|
|
|
|
return request;
|
|
|
|
}
|
|
|
|
|
2024-01-16 01:50:12 +08:00
|
|
|
export default createRequest;
|