1
0
Fork 0
freesewing/packages/strapi/config/server.js
2021-08-30 11:40:16 +02:00

9 lines
211 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'),
},
},
})