1
0
mirror of synced 2025-12-22 19:34:15 -05:00
Files
docs/middleware/csrf.js
Kevin Heis 8a56437c93 Pretty format (#20352)
* Update prettier flow to include JS

* Run prettier

* ...run prettier
2021-07-14 14:35:01 -07:00

8 lines
181 B
JavaScript

import cookieSettings from '../lib/cookie-settings.js'
import xCsurf from 'csurf'
export default xCsurf({
cookie: cookieSettings,
ignoreMethods: ['GET', 'HEAD', 'OPTIONS'],
})