From 08b9832d3f90f71452d7c15233f44a7665ece199 Mon Sep 17 00:00:00 2001 From: lauralani Date: Sun, 21 May 2023 13:26:20 +0200 Subject: [PATCH] update static file management --- .eleventy.js | 7 ++++--- {.well-known => static/.well-known}/.gitkeep | 0 {css => static/css}/main.css | 0 3 files changed, 4 insertions(+), 3 deletions(-) rename {.well-known => static/.well-known}/.gitkeep (100%) rename {css => static/css}/main.css (100%) diff --git a/.eleventy.js b/.eleventy.js index 75c47d8..bca9837 100644 --- a/.eleventy.js +++ b/.eleventy.js @@ -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 } diff --git a/.well-known/.gitkeep b/static/.well-known/.gitkeep similarity index 100% rename from .well-known/.gitkeep rename to static/.well-known/.gitkeep diff --git a/css/main.css b/static/css/main.css similarity index 100% rename from css/main.css rename to static/css/main.css