Update .eleventy.js to passthrough did.json

This commit is contained in:
Gordon Pedersen 2023-10-16 11:30:06 +11:00 committed by GitHub
parent ce680a0770
commit d2bf6446ce
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -189,6 +189,7 @@ module.exports = function(eleventyConfig) {
eleventyConfig.addPassthroughCopy({"js":"assets/js"});
eleventyConfig.addPassthroughCopy("css");
eleventyConfig.addPassthroughCopy("CNAME");
eleventyConfig.addPassthroughCopy("did.json":".well-known/did.json");
eleventyConfig.addPlugin(pluginRss);
@ -201,4 +202,4 @@ module.exports = function(eleventyConfig) {
htmlTemplateEngine: "njk",
templateFormats: ["md","html","njk"]
}
};
};