Last active
January 15, 2026 19:18
-
-
Save webrgp/7673e4ecaf392d1b22ce2ea85db5f101 to your computer and use it in GitHub Desktop.
Craft CMS debug panel IDE configuration
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * config/debug.php | |
| */ | |
| return [ | |
| 'traceLine' => '<a href="vscode://file/{file}:{line}">{file}:{line}</a>', | |
| // 'traceLine' => '<a href="phpstorm://open?url={file}&line={line}">{file}:{line}</a>', | |
| // 'traceLine' => '<a href="zed://file/{file}:{line}">{file}:{line}</a>', | |
| 'tracePathMappings' => [ | |
| '/var/www' => '/Users/username/your/path/to/craft/project', | |
| ], | |
| ]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment