13 lines
356 B
JavaScript
13 lines
356 B
JavaScript
|
|
const JWT_SECRET = process.env.JWT_SECRET;
|
||
|
|
|
||
|
|
if (!JWT_SECRET) {
|
||
|
|
throw new Error(
|
||
|
|
'JWT_SECRET environment variable is not set. ' +
|
||
|
|
'Set it in .env.local for local dev, or in the Vercel project settings for deploys. ' +
|
||
|
|
'Generate a strong secret with: openssl rand -hex 32'
|
||
|
|
);
|
||
|
|
}
|
||
|
|
|
||
|
|
export { JWT_SECRET };
|
||
|
|
export const JWT_TOKEN_TTL = '24h';
|