Add url & admin url to env
This commit is contained in:
+2
-2
@@ -1,9 +1,9 @@
|
||||
module.exports = ({ env }) => ({
|
||||
host: env('HOST', '0.0.0.0'),
|
||||
port: env.int('PORT', 1337),
|
||||
url: 'https://api.o-k-i.net',
|
||||
url: env('STRAPI_URL', null),
|
||||
admin: {
|
||||
url: '/oki-dashboard',
|
||||
url: env('STRAPI_ADMIN_URL', null),
|
||||
auth: {
|
||||
secret: env('ADMIN_JWT_SECRET', '71b106d7b2a4853774b0b27424b77097'),
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user