Enable enableDeveloperExperiments
Solved
Ghost
-
In the Cloundron Ghost app docs
https://docs.cloudron.io/apps/ghost/#gravatar
It is mentioned that you can enable Gravatar in the config.production.json, save the file and restart.
I tried adding enableDeveloperExperiments as follows
"privacy": { "useUpdateCheck": false, "useGravatar": true, "useRpcPing": false, "useStructuredData": true, "enableDeveloperExperiments": true }
This did nothing even after a few restarts. So I removed the enableDeveloperExperiments and left Gravatar = true but did not see any changes from that either.
Is there another area that needs to be updated/compiled to enable the Labs area via enableDeveloperExperiments
-
@briankb-0 Per https://github.com/TryGhost/Ghost/blob/main/config.development.json, looks like
enableDeveloperExperiments
must not be inside privacy. So,{ "enableDeveloperExperiments": true, "privacy": { "useUpdateCheck": false, "useGravatar": true, "useRpcPing": false, "useStructuredData": true } }
-
-