What if I pass `s-maxage` header? it won't be cached? ``` app.use( '/v1/*', cors({ origin:

What if I pass s-maxage header? it won't be cached?

app.use(
  '/v1/*',
  cors({
    origin: 'http://example.com',
    maxAge: 600,
    credentials: true,
  })
)
Was this page helpful?