16 lines
231 B
JavaScript
Raw Normal View History

2021-07-08 11:20:13 +02:00
'use strict';
module.exports = {
2021-08-13 15:35:19 +02:00
default: ({ env }) => ({
jwtSecret: env('JWT_SECRET'),
jwt: {
expiresIn: '30d',
},
ratelimit: {
interval: 60000,
max: 10,
},
}),
2021-07-08 11:20:13 +02:00
validator: () => {},
};