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 7550510 commit f800252Copy full SHA for f800252
README.md
@@ -55,12 +55,10 @@ export default defineNuxtConfig({
55
target: 'https://jsonplaceholder.typicode.com',
56
changeOrigin: true,
57
pathRewrite: {
58
- '^/api/todos': '/todos',
59
- '^/api/users': '/users'
+ '^/api/todos': '/todos'
60
},
61
pathFilter: [
62
- '/api/todos',
63
- '/api/users'
+ '/api/todos'
64
]
65
66
{
@@ -78,7 +76,6 @@ export default defineNuxtConfig({
78
76
})
79
77
80
// GET /api/todos -> https://jsonplaceholder.typicode.com/todos [304]
81
-// GET /api/users -> https://jsonplaceholder.typicode.com/users [304]
82
// GET /api/launches -> https://api.spacexdata.com/v5/launches/latest [304]
83
```
84
0 commit comments