v3.0.0
- [BC] Update plugins configuration #155
The plugin configuration has changed.
RetinaJS configuration was inghost-storage-cloudinary.rjs
JSON
property, while it's now wrapped into aplugins
object.
Before:
{
"storage": {
"active": "ghost-storage-cloudinary",
"ghost-storage-cloudinary": {
"rjs": {
"baseWidth": 960,
"fireForget": true
}
}
}
}
Now:
{
"storage": {
"active": "ghost-storage-cloudinary",
"ghost-storage-cloudinary": {
"plugins": {
"retinajs": {
"baseWidth": 960,
"fireForget": true
}
}
}
}
}