Add URL env variable

This commit is contained in:
2024-03-21 07:16:29 +01:00
parent c5af97b9a4
commit 18bb23f1f9
2 changed files with 2 additions and 0 deletions
+1
View File
@@ -1,6 +1,7 @@
module.exports = ({ env }) => ({
host: env('HOST', '0.0.0.0'),
port: env.int('PORT', 1337),
url: env('URL', 'http://localhost:1337'),
app: {
keys: env.array('APP_KEYS'),
},