Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/resolvers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export const builtins = new Map<string, string>([
* them to any files referenced by static HTML.
*/
export async function getResolvers(page: MarkdownPage, {root, path}: {root: string; path: string}): Promise<Resolvers> {
const hash = createHash("sha256").update(page.html);
const hash = createHash("sha256").update(page.html).update(JSON.stringify(page.data));
const assets = findAssets(page.html, path);
const files = new Set<string>();
const fileMethods = new Set<string>();
Expand Down