mirror of
https://github.com/strapi/strapi.git
synced 2025-08-31 12:23:05 +00:00
16 lines
231 B
JavaScript
16 lines
231 B
JavaScript
'use strict';
|
|
|
|
module.exports = {
|
|
default: ({ env }) => ({
|
|
jwtSecret: env('JWT_SECRET'),
|
|
jwt: {
|
|
expiresIn: '30d',
|
|
},
|
|
ratelimit: {
|
|
interval: 60000,
|
|
max: 10,
|
|
},
|
|
}),
|
|
validator: () => {},
|
|
};
|