1
0
Fork 0
freesewing/packages/strapi/config/server.js

10 lines
212 B
JavaScript
Raw Normal View History

2021-08-29 11:58:04 +02:00
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'),
},
},
});