зеркало из https://github.com/github/docs.git
10 строки
350 B
JavaScript
10 строки
350 B
JavaScript
export default {
|
|
httpOnly: true, // can't access these cookies through browser JavaScript
|
|
secure: !['test', 'development'].includes(process.env.NODE_ENV),
|
|
// requires https protocol
|
|
// http://localhost fails on chrome with secure
|
|
sameSite: 'lax',
|
|
// most browsers are "lax" these days,
|
|
// but older browsers used to default to "none"
|
|
}
|