fix: fix missing export pages in node v8 (#1002)
For reasons that are mysterious to me, #1000 works in Node v10 but not v8. And Zeit runs v8. Moving the hidden links to a different page fixes it. ¯\_(ツ)_/¯
This commit is contained in:
parent
2debddaaf6
commit
7f1ba74c37
|
@ -76,6 +76,14 @@
|
||||||
</FreeTextLayout>
|
</FreeTextLayout>
|
||||||
</HiddenFromSSR>
|
</HiddenFromSSR>
|
||||||
{/if}
|
{/if}
|
||||||
|
<div style="display: none">
|
||||||
|
<!-- TODO: this is just a hack so that `sapper export` knows to crawl these files -->
|
||||||
|
<a href="/muted">Muted</a>
|
||||||
|
<a href="/blocked">Blocked</a>
|
||||||
|
<a href="/pinned">Pinned</a>
|
||||||
|
<a href="/requests">Requests</a>
|
||||||
|
<a href="/share">Share</a>
|
||||||
|
</div>
|
||||||
<style>
|
<style>
|
||||||
.community-page {
|
.community-page {
|
||||||
margin: 20px;
|
margin: 20px;
|
||||||
|
|
|
@ -13,14 +13,6 @@
|
||||||
|
|
||||||
<p>Logo thanks to "sailboat" by Gregor Cresnar from <ExternalLink href="https://thenounproject.com/">the Noun Project</ExternalLink>.</p>
|
<p>Logo thanks to "sailboat" by Gregor Cresnar from <ExternalLink href="https://thenounproject.com/">the Noun Project</ExternalLink>.</p>
|
||||||
|
|
||||||
<div style="display: none">
|
|
||||||
<!-- TODO: this is just a hack so that `sapper export` knows to crawl these files -->
|
|
||||||
<a href="/muted">Muted</a>
|
|
||||||
<a href="/blocked">Blocked</a>
|
|
||||||
<a href="/pinned">Pinned</a>
|
|
||||||
<a href="/requests">Requests</a>
|
|
||||||
<a href="/share">Share</a>
|
|
||||||
</div>
|
|
||||||
</SettingsLayout>
|
</SettingsLayout>
|
||||||
<script>
|
<script>
|
||||||
import SettingsLayout from '../../_components/settings/SettingsLayout.html'
|
import SettingsLayout from '../../_components/settings/SettingsLayout.html'
|
||||||
|
|
Loading…
Reference in a new issue