Johnny Martin

Results 3 comments of Johnny Martin

It's hard to see what exactly you've changed since most of the changes are code reformatting. Maybe separate them in different PRs?

I'm also having problems with 1.1.2+ Downgrading to 1.1.1 works as well.

Here's what I did to allow showing the swagger-html page while in development mode: Disable CSP when NODE_ENV is in development server.ts ```js app.use(helmet({ contentSecurityPolicy: process.env.NODE_ENV === 'development' ? false...