swissup/module-ignition

A beautiful error page and error tracking service for Magento

Maintainers

Package info

github.com/swissup/module-ignition

Type:magento2-module

pkg:composer/swissup/module-ignition

Statistics

Installs: 39 275

Dependents: 0

Suggesters: 0

Stars: 87

Open Issues: 1

1.2.0 2026-04-29 15:02 UTC

This package is auto-updated.

Last update: 2026-04-29 15:03:03 UTC


README

A beautiful error page and error tracking service for Magento powered by spatie/ignition.

Screenshot of the error page powered by Ignition

Installation

composer require swissup/module-ignition
bin/magento module:enable Swissup_Ignition

Configuration

This module will show the error page with detailed information about the error and stack trace only in developer mode:

bin/magento deploy:mode:set developer

You can also use it in production mode to log the errors using Flare error tracking service. To do so, add this section to the env.php file:

'system' => [
    'default' => [
        'swissup_ignition' => [
            'general' => [
                'api_key' => 'API_KEY'
            ]
        ]
    ]
],

Docker

When using Ignition with Docker the Open in Editor links will show incorrect paths. To fix this issue open ~/.ignition.json file and add remote_sites_path and local_sites_path settings.

Example:

{
    "remote_sites_path": "/var/www/public",
    "local_sites_path": "/Users/username/Sites/mysite/public"
}