-
-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
70140f6
commit 9e3800c
Showing
1 changed file
with
4 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,27 +9,19 @@ Add Axios Cache Interceptor and Axios to your project using your favorite packag | |
::: code-group | ||
|
||
```bash [Yarn] | ||
yarn add axios@1 axios-cache-interceptor@1 | ||
yarn add axios@^1 axios-cache-interceptor@^1 | ||
``` | ||
|
||
```bash [NPM] | ||
npm install axios@1 axios-cache-interceptor@1 | ||
npm install axios@^1 axios-cache-interceptor@^1 | ||
``` | ||
|
||
```html [Browser] | ||
<!-- Development UMD build for ES2017+ (~13.3 KiB) --> | ||
<script | ||
src="https://cdn.jsdelivr.net/npm/[email protected]/dev/index.bundle.js" | ||
integrity="sha256-+VuTj9uoKtkaK4W5NhpOzIa5i2c1c8U4KtGeKT05Xng=" | ||
crossorigin="anonymous" | ||
></script> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dev/index.bundle.js" integrity="sha256-IqTiaEd8yMpoIWKHKQUxVKYza+DT4wg81fOzdE7tujI=" crossorigin="anonymous"></script> | ||
|
||
<!-- Production UMD build for ES5+ (~14.6 KiB) --> | ||
<script | ||
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/index.bundle.js" | ||
integrity="sha256-oMsCHuvRgFCk0HWYVIYEB/M1XjRAglYjU+lMQEi3zjY=" | ||
crossorigin="anonymous" | ||
></script> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/index.bundle.js" integrity="sha256-UPK5JOqd8kPjRHJmrvvauuRvPlcZb0gAb6z4iYhszOs=" crossorigin="anonymous"></script> | ||
``` | ||
|
||
```ts [Skypack] | ||
|