upadated strapi to 4.0.7
This commit is contained in:
parent
de3f1790f9
commit
c54d650806
|
@ -6,6 +6,7 @@ module.exports = [
|
|||
'strapi::logger',
|
||||
'strapi::query',
|
||||
'strapi::body',
|
||||
'strapi::session',
|
||||
'strapi::favicon',
|
||||
'strapi::public',
|
||||
];
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
module.exports = ({ env }) => ({
|
||||
host: env('HOST', '0.0.0.0'),
|
||||
port: env.int('PORT', 1337),
|
||||
app: {
|
||||
keys: env.array("APP_KEYS", ["testKey1", "testKey2"]),
|
||||
},
|
||||
});
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -10,10 +10,10 @@
|
|||
"strapi": "strapi"
|
||||
},
|
||||
"dependencies": {
|
||||
"@strapi/plugin-graphql": "^4.0.5",
|
||||
"@strapi/plugin-i18n": "4.0.5",
|
||||
"@strapi/plugin-users-permissions": "4.0.5",
|
||||
"@strapi/strapi": "4.0.5",
|
||||
"@strapi/plugin-graphql": "4.0.7",
|
||||
"@strapi/plugin-i18n": "4.0.7",
|
||||
"@strapi/plugin-users-permissions": "4.0.7",
|
||||
"@strapi/strapi": "4.0.7",
|
||||
"sqlite3": "5.0.2"
|
||||
},
|
||||
"author": {
|
||||
|
|
Loading…
Reference in New Issue