{#await load_promise} {:then}

Errors

{#each errors as error} error_selected = error }>{ error.location ? error.location.file : error.filename} {:else}

No Errors

You currently have no errors that are shown. Try refreshing. {/each}
{#if error_selected} {#if error_selected.location}

{error_selected.location.file}

{ error_selected.text }

          
{#each error_selected.location.lineText.split('\n') as line, i}
{ `${line}\n` }
{/each}
          
          

Notes

{#each error_selected.notes as note}

{note.location.file}

{note.text}

            
{ note.location.line}: {note.location.lineText}
            
          
{/each} {:else if error_selected.filename}

{error_selected.filename}

{ error_selected.message }

{error_selected.code}

Stack

{ error_selected.stack }
{:else}

Unknown error I've never seen before. Look in console and in `debug/` for error output files.

{/if} {/if}
{/await}