Merge pull request #12444 from strapi/fix-kitchensink

Fix kitchensink
This commit is contained in:
cyril lopez 2022-02-11 11:20:33 +01:00 committed by GitHub
commit f3d3c322da
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 0 deletions

View File

@ -1,2 +1,3 @@
HOST=localhost
PORT=1337
APP_KEYS="toBeModified1,toBeModified2"

View File

@ -6,4 +6,7 @@ module.exports = ({ env }) => ({
secret: env('ADMIN_JWT_SECRET', '6f75e424d1a0307077c294fcc3c7d78d'),
},
},
app: {
keys: env.array('APP_KEYS', ['toBeModified1', 'toBeModified2']),
},
});