We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9d10117 commit 39d6eb2Copy full SHA for 39d6eb2
1 file changed
11ty/esbuild.ts
@@ -18,6 +18,7 @@ export default async function (eleventyConfig: UserConfig): Promise<void> {
18
)
19
20
eleventyConfig.addTransform('esbuild-translate-hashes', function (content) {
21
+ if (!hashes) return content
22
return translateHashes(this.page.inputPath, this.page.url, hashes, content) ?? content
23
})
24
0 commit comments