mirror of
https://github.com/italicsjenga/agb.git
synced 2024-12-23 00:01:34 +11:00
Expand how to do the things we said you could do (#653)
This commit is contained in:
commit
412cd374b7
|
@ -6,9 +6,40 @@ export function GameDeveloperSummary() {
|
|||
<Summary>For game developers</Summary>
|
||||
<p>If you don'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>
|
||||
);
|
||||
|
|
Loading…
Reference in a new issue