10 lines
222 B
TypeScript
10 lines
222 B
TypeScript
import { config } from "../config.ts";
|
|
|
|
export const jwt = {
|
|
algorithm: "RS256",
|
|
privateKey: config.auth.privateKey,
|
|
publicKey: config.auth.publicKey,
|
|
issuer: "http://localhost",
|
|
audience: "http://localhost",
|
|
};
|