mirror of
https://github.com/strapi/strapi.git
synced 2025-11-01 10:23:34 +00:00
9 lines
165 B
Plaintext
9 lines
165 B
Plaintext
module.exports = ({ env }) => ({
|
|
auth: {
|
|
secret: env('ADMIN_JWT_SECRET', '<%= adminJwtToken %>'),
|
|
},
|
|
apiToken: {
|
|
salt: env('API_TOKEN_SALT'),
|
|
},
|
|
});
|