提问人:user19610670 提问时间:10/8/2023 最后编辑:user19610670 更新时间:10/8/2023 访问量:22
Tracy/Tracy 不加载任何样式
tracy/tracy does not load any styles
问:
我正在从头开始创建一个小项目,但我在使 tracy/tracy 包正常工作时遇到了问题。 有效但没有任何样式,异常和错误也是如此。Debugger::dump
索引.php:
<?php
use App\Common\Config;
use Tracy\Debugger;
require_once __DIR__ . '/../vendor/autoload.php';
Config::init();
$arr = [10, 20.2, true, null, 'hello'];
Debugger::dump($arr);
配置.php:
<?php
namespace App\Common;
use Tracy\Debugger;
class Config
{
public static function init(): void
{
self::initDebugger();
}
public static function initDebugger(): void
{
Debugger::enable(Debugger::Development);
Debugger::$strictMode = true;
Debugger::$dumpTheme = 'dark';
Debugger::$showBar = false;
}
}
nginx/conf.d/default.conf:
server {
listen 80;
server_name localhost;
root /var/www/html/public;
index index.php;
location ~ \.php$ {
fastcgi_pass app:9000;
fastcgi_index index.php;
fastcgi_param REQUEST_METHOD $request_method;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
location / {
try_files $uri/ /index.php?$query_string;
}
}
我已经尝试更改此处所述的 nginx 配置 https://tracy.nette.org/en/recipes
编辑:
降级到“tracy/tracy”:“v2.10.x-dev”有帮助,但现在我无法例如交互式地扩展转储数组。
答: 暂无答案
评论