Skip to content

v3.0.0

Latest
Compare
Choose a tag to compare
@eexit eexit released this 06 Dec 21:46
· 4 commits to master since this release
  • [BC] Update plugins configuration #155
    The plugin configuration has changed.
    RetinaJS configuration was in ghost-storage-cloudinary.rjs JSON
    property, while it's now wrapped into a plugins 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
                }
            }
        }
    }
}