We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a1ffaff commit e09effcCopy full SHA for e09effc
src/resolvers.ts
@@ -68,7 +68,7 @@ export const builtins = new Map<string, string>([
68
* them to any files referenced by static HTML.
69
*/
70
export async function getResolvers(page: MarkdownPage, {root, path}: {root: string; path: string}): Promise<Resolvers> {
71
- const hash = createHash("sha256").update(page.html);
+ const hash = createHash("sha256").update(page.html).update(JSON.stringify(page.data));
72
const assets = findAssets(page.html, path);
73
const files = new Set<string>();
74
const fileMethods = new Set<string>();
0 commit comments