mirror of
https://github.com/strapi/strapi.git
synced 2025-07-23 17:10:08 +00:00
10 lines
210 B
JavaScript
10 lines
210 B
JavaScript
![]() |
module.exports = ({ env }) => ({
|
||
|
host: env('HOST', '0.0.0.0'),
|
||
|
port: env.int('PORT', 1337),
|
||
|
admin: {
|
||
|
auth: {
|
||
|
secret: env('ADMIN_JWT_SECRET', 'fb07d090b62789dce667b54ae419850e'),
|
||
|
},
|
||
|
},
|
||
|
});
|