mirror of
https://github.com/strapi/strapi.git
synced 2025-07-12 03:22:59 +00:00
11 lines
214 B
JavaScript
11 lines
214 B
JavaScript
module.exports = ({ env }) => ({
|
|
host: env('HOST', '0.0.0.0'),
|
|
port: env.int('PORT', 1337),
|
|
admin: {
|
|
// autoOpen: true,
|
|
auth: {
|
|
secret: env('ADMIN_JWT_SECRET', 'example-token'),
|
|
},
|
|
},
|
|
});
|