documenso/apps/remix/app/storage/lang-cookie.server.ts

11 lines
257 B
TypeScript
Raw Normal View History

2025-01-02 04:33:37 +00:00
import { createCookie } from 'react-router';
2025-05-08 05:59:43 +00:00
import { env } from '@documenso/lib/utils/env';
2025-01-02 04:33:37 +00:00
export const langCookie = createCookie('lang', {
path: '/',
maxAge: 60 * 60 * 24 * 365 * 2,
2025-05-08 05:59:43 +00:00
httpOnly: true,
secure: env('NODE_ENV') === 'production',
2025-01-02 04:33:37 +00:00
});