add url env var
Some checks failed
Deployment / Deploy strapi (push) Waiting to run
Deployment / Deploy website (push) Has been cancelled

This commit is contained in:
Benjamin Palko 2025-05-05 20:18:31 -04:00
parent aa968fd61e
commit b76267f59e

View file

@ -1,6 +1,7 @@
export default ({ env }) => ({
host: env('HOST', '0.0.0.0'),
port: env.int('PORT', 1337),
url: env('URL'),
app: {
keys: env.array('APP_KEYS')
}