Skip to content

Commit

Permalink
docs: updated download urls
Browse files Browse the repository at this point in the history
  • Loading branch information
arthurfiorette committed Feb 8, 2022
1 parent f4276a5 commit 102a02b
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions docs/pages/installing.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,23 +37,23 @@ const { setupCache } = require('axios-cache-interceptor/umd');
## With CDN

```html
<!-- Development build (~12.4 KiB) -->
<!-- Development build for ES2020+ (~11.3 KiB) -->
<script
src="https://cdn.jsdelivr.net/npm/axios-cache-interceptor@0.8.5/umd/dev.js"
integrity="sha256-xIjKHhIfSz8UWokNvc19uUpKpgyScXiT6IODLPEPKlA="
src="https://cdn.jsdelivr.net/npm/axios-cache-interceptor@0.8.8/umd/dev.js"
integrity="sha256-SZVzXptEUxn+mOVIPQPJRnGFmFV+/8prfTx2pMyrbeM="
crossorigin="anonymous"
></script>

<!-- Production for ES6+ (~10.4 KiB) -->
<!-- Production for ES2017+ (~9.85 KiB) -->
<script
src="https://cdn.jsdelivr.net/npm/axios-cache-interceptor@0.8.5/umd/index.js"
integrity="sha256-qhS8QSRF2iNnqxtAwe4NJ5v/kcxYsLvD0Jf3ss2iLpk="
src="https://cdn.jsdelivr.net/npm/axios-cache-interceptor@0.8.8/umd/index.js"
integrity="sha256-FUDdb76oASr8kl/6iiNlz+W0yLLcmyS4L/+CGNWKTfo="
crossorigin="anonymous"
></script>

<!-- Production for ES5+ (~13.9 KiB) (Needs Promise polyfill) -->
<script
src="https://cdn.jsdelivr.net/npm/axios-cache-interceptor@0.8.5/umd/es5.js"
src="https://cdn.jsdelivr.net/npm/axios-cache-interceptor@0.8.8/umd/es5.js"
integrity="sha256-EzMv9XzLARcJMVDg0UrCT3r3+sMgnSriAI/nK1opXTI="
crossorigin="anonymous"
></script>
Expand All @@ -69,10 +69,10 @@ You can import any [CDN Url](#with-cdns) and use it in your code. **UMD Compatib

```js
// ESM with Skypack CDN
import { setupCache } from 'https://cdn.skypack.dev/axios-cache-interceptor@0.8.5';
import { setupCache } from 'https://cdn.skypack.dev/axios-cache-interceptor@0.8.8';

// UMD with JSDeliver CDN
import { setupCache } from 'https://cdn.jsdelivr.net/npm/axios-cache-interceptor@0.8.5/umd/index.js';
import { setupCache } from 'https://cdn.jsdelivr.net/npm/axios-cache-interceptor@0.8.8/umd/index.js';
```

## Official support table
Expand Down

0 comments on commit 102a02b

Please sign in to comment.