mirror of
https://github.com/strapi/strapi.git
synced 2025-08-26 09:42:09 +00:00
13 lines
240 B
JavaScript
13 lines
240 B
JavaScript
module.exports = ({ env }) => ({
|
|
// autoOpen: false,
|
|
auth: {
|
|
secret: env('ADMIN_JWT_SECRET', 'example-token'),
|
|
},
|
|
apiToken: {
|
|
salt: env('API_TOKEN_SALT', 'example-salt'),
|
|
},
|
|
relations: {
|
|
performance: false,
|
|
},
|
|
});
|