update static file management

This commit is contained in:
Adora Laura Kalb 2023-05-21 13:26:20 +02:00
parent b07318bcd5
commit 08b9832d3f
Signed by: adoralaura
GPG key ID: 7A4552166FC8C056
3 changed files with 4 additions and 3 deletions

View file

@ -1,7 +1,8 @@
module.exports = function(eleventyConfig) {
eleventyConfig.addPassthroughCopy('css')
eleventyConfig.addPassthroughCopy('js')
eleventyConfig.addPassthroughCopy('.well-known')
eleventyConfig.addPassthroughCopy('static/**')
// eleventyConfig.addPassthroughCopy('static/js')
// eleventyConfig.addPassthroughCopy('static/.well-known')
// eleventyConfig.addPassthroughCopy('static/certificates')
return {
passthroughFileCopy: true
}