1 | "use strict";
|
2 | Object.defineProperty(exports, "__esModule", { value: true });
|
3 | exports.authenticationSettingsSchema = exports.defaultOptions = void 0;
|
4 | const schema_1 = require("@feathersjs/schema");
|
5 | Object.defineProperty(exports, "authenticationSettingsSchema", { enumerable: true, get: function () { return schema_1.authenticationSettingsSchema; } });
|
6 | exports.defaultOptions = {
|
7 | authStrategies: [],
|
8 | jwtOptions: {
|
9 | header: { typ: 'access' },
|
10 | audience: 'https://yourdomain.com',
|
11 | issuer: 'feathers',
|
12 | algorithm: 'HS256',
|
13 | expiresIn: '1d'
|
14 | }
|
15 | };
|
16 |
|
\ | No newline at end of file |