mirror of
https://github.com/strapi/strapi.git
synced 2025-08-01 13:29:01 +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,
|
||
|
},
|
||
|
});
|