mirror of
https://github.com/strapi/strapi.git
synced 2025-09-17 04:17:21 +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', '6f75e424d1a0307077c294fcc3c7d78d'),
|
|
},
|
|
},
|
|
});
|