Skip to content

Commit f515124

Browse files
Update typedoc.route.ts
1 parent 1b137a0 commit f515124

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/api/v1/typedoc/typedoc.route.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
import express from 'express';
22
import path from 'path';
3-
import {devlopmentApiLimiter} from '../../../middlewares/apiRateLimit.middleware';
43

54
const typedocRouter = express.Router();
65

76
typedocRouter.use(express.static(path.join(__dirname, '../../../../docs')));
87

9-
typedocRouter.get('/typedoc', devlopmentApiLimiter, (req, res) => {
8+
typedocRouter.get('/typedoc', (req, res) => {
109
res.sendFile(path.join(__dirname, '../../../../docs/index.html'));
1110
});
1211

0 commit comments

Comments
 (0)