mirror of
https://github.com/strapi/strapi.git
synced 2025-07-31 12:55:08 +00:00
14 lines
208 B
JavaScript
14 lines
208 B
JavaScript
module.exports = ({ env }) => ({
|
|
host: env('HOST', '0.0.0.0'),
|
|
port: env.int('PORT', 1337),
|
|
proxy: {
|
|
enabled: false,
|
|
},
|
|
cron: {
|
|
enabled: false,
|
|
},
|
|
admin: {
|
|
autoOpen: false,
|
|
},
|
|
});
|