10 lines
212 B
JavaScript
10 lines
212 B
JavaScript
![]() |
module.exports = ({ env }) => ({
|
||
|
host: env('HOST', '0.0.0.0'),
|
||
|
port: env.int('PORT', 1337),
|
||
|
admin: {
|
||
|
auth: {
|
||
|
secret: env('ADMIN_JWT_SECRET', 'you could hardcode a fallback here'),
|
||
|
},
|
||
|
},
|
||
|
});
|