mirror of
https://github.com/strapi/strapi.git
synced 2025-06-27 00:41:25 +00:00
13 lines
267 B
JavaScript
13 lines
267 B
JavaScript
module.exports = ({ env }) => ({
|
|
// autoOpen: false,
|
|
auth: {
|
|
secret: env('ADMIN_JWT_SECRET', 'example-token'),
|
|
},
|
|
apiToken: {
|
|
salt: env('API_TOKEN_SALT', 'example-salt'),
|
|
},
|
|
auditLogs: {
|
|
enabled: env.bool('AUDIT_LOGS_ENABLED', true),
|
|
},
|
|
});
|