expand description with how to do these things

This commit is contained in:
Corwin 2024-04-23 20:59:22 +01:00
parent 866ffaaa0f
commit 804846e573
No known key found for this signature in database

View file

@ -6,9 +6,39 @@ export function GameDeveloperSummary() {
<Summary>For game developers</Summary>
<p>If you don&apos;t want players to be sent to this page, you can:</p>
<ol>
<li>Configure the backtrace page to point to your own site</li>
<li>Configure the backtrace page to not point to a site at all</li>
<li>Not use the backtrace feature</li>
<li>
Configure the backtrace page to point to your own site
<ul>
<li>
Compile with{" "}
<code>
AGBRS_BACKTRACE_WEBSITE=your-website.test/crash# cargo build
</code>
.
</li>
</ul>
</li>
<li>
Configure the backtrace page to not point to a site at all
<ul>
<li>
Compile with <code>AGBRS_BACKTRACE_WEBSITE= cargo build</code>.
</li>
</ul>
</li>
<li>
Not use the backtrace feature
<ul>
<li>
Compile without the default <code>backtrace</code> feature. See{" "}
<a href="https://doc.rust-lang.org/cargo/reference/features.html#dependency-features">
the features chapter in the Cargo Book
</a>{" "}
for details on how to pick features.
</li>
</ul>
</li>
</ol>
</Details>
);