ContributionsMost RecentMost LikesSolutionsRe: node.js Generated code with oas3-tools version 2.2.3 does not take middleware I built a patch package to solve cors and middleware issues: https://www.npmjs.com/package/oas3-tools-cors node.js Generated code with oas3-tools version 2.2.3 does not take middleware I'm trying to add a middleware to the code generated by swaggerhub for node.js, it appears to ignore it and not use the middleware I'm adding: const expressAppConfig = oas3Tools.expressAppConfig(path.join(__dirname, './api/openapi.yaml'), options); const app = expressAppConfig.getApp(); app.use(cors()); app.use(xApiAuth); app.use(helmet());