We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7cd4b52 commit a4a7df3Copy full SHA for a4a7df3
docs/src/guide/getting-started.md
@@ -8,10 +8,6 @@ Add Axios Cache Interceptor and Axios to your project using your favorite packag
8
9
::: code-group
10
11
-```bash [Yarn]
12
-yarn add axios@^1 axios-cache-interceptor@^1
13
-```
14
-
15
```bash [NPM]
16
npm install axios@^1 axios-cache-interceptor@^1
17
```
@@ -45,7 +41,6 @@ import { setupCache } from 'axios-cache-interceptor';
45
41
const instance = Axios.create(); // [!code focus]
46
42
const axios = setupCache(instance);// [!code focus]
47
43
48
49
44
const req1 = axios.get('https://api.example.com/'); // [!code focus]
50
const req2 = axios.get('https://api.example.com/'); // [!code focus]
51
0 commit comments