We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1b1bd9d commit 955b916Copy full SHA for 955b916
1 file changed
cdn-config/routes.js
@@ -27,6 +27,23 @@ export default new Router()
27
});
28
})
29
30
+ .match('/', ({ setComment }) => {
31
+ setComment("Homepage")
32
+ })
33
+
34
+ .match('/swaggerui', ({ setComment }) => {
35
+ setComment("Swagger UI")
36
37
38
+ .match('/postman', ({ setComment }) => {
39
+ setComment("Postman")
40
41
42
+ .match('/api/:path*', ({ setComment }) => {
43
+ setComment("API route")
44
45
46
47
// Here is an example where we cache api/* at the edge but prevent caching in the browser
48
// .match('/api/:path*', {
49
// caching: {
0 commit comments