mpyw / axios-case-converter

Axios transformer/interceptor that converts snake_case/camelCase
MIT License
160 stars 18 forks source link

TypeError: __vite_ssr_import_0__.default is not a function #62

Closed jifalops closed 8 months ago

jifalops commented 8 months ago

class ClientImpl implements Client { constructor(baseUrl: string) { this.baseUrl = baseUrl; this.client = applyCaseMiddleware(axios.create()); }

readonly baseUrl: string; readonly client: axios.AxiosInstance;

...