You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 11, 2023. It is now read-only.
For now, only way to include routes via export is to add <a> element with href attribute pointing that route in some other reachable route https://sapper.svelte.dev/docs#How_it_works
But there are cases when some routes cannot be reachable by <a>, and still needs to be exported.
In my case I have success page. When form was submitted correctly I do goto('/success').
It should be a way to pass to sapper export routes that should be exported as well. Or maybe export should not rely on <a> tag only.
The text was updated successfully, but these errors were encountered:
For now, only way to include routes via export is to add
<a>
element with href attribute pointing that route in some other reachable route https://sapper.svelte.dev/docs#How_it_worksBut there are cases when some routes cannot be reachable by
<a>
, and still needs to be exported.In my case I have success page. When form was submitted correctly I do
goto('/success')
.It should be a way to pass to
sapper export
routes that should be exported as well. Or maybe export should not rely on<a>
tag only.The text was updated successfully, but these errors were encountered: