@lokalise/harmony 1.15.0-exp-removeaddon.1 → 1.15.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -1
- package/package.json +1 -1
package/README.md
CHANGED
@@ -24,7 +24,8 @@ const authHttpClient = wretch('path/to/auth/provider');
|
|
24
24
|
// This is the client that you would use to make requests to your app's API
|
25
25
|
// - It assumes that your API is compatible with the shared authentication strategy
|
26
26
|
export const appHttpClient = wretch('path/to/you/api')
|
27
|
-
|
27
|
+
// ... More config as you see fit ...
|
28
|
+
.errorType('json');
|
28
29
|
|
29
30
|
export const appAuthenticatedHttpClient = appHttpClient
|
30
31
|
.middlewares([
|