Expand how to do the things we said you could do (#653)

This commit is contained in:
Corwin 2024-04-23 22:35:14 +01:00 committed by GitHub
commit 412cd374b7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -6,9 +6,40 @@ 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=&quot;your-website.test/crash#&quot;
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>
);