-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dont use concurrent requests on sapper export!!
i've spent so much time trying to figure out why sapper export often misses exporting the [slug].json for certain pages. in b0b3b83 i assumed the issue was (somehow) using hyphens in slugs so switched to using underscores but this started happening again. i found the followng issues which all are "closed" or "merged" but this is _definitely_ still a bug. ended up looking at options for the sapper export command and saw i can turn off concurrent requests, which seems to have fixed the issue. - sveltejs/sapper#1078 - sveltejs/sapper#893 - sveltejs/sapper#869 hoping to submit a repro of the issue to sapper soon
- Loading branch information
Showing
3 changed files
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
title: Avril 14th | ||
slug: avril_14th | ||
slug: avril-14th | ||
date: 2015-11-03 | ||
description: "" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Thank for that, that also "solved" my problem