From 6e24573bf7a0dee1021db8841520dbeef1132a79 Mon Sep 17 00:00:00 2001 From: xunuwu Date: Tue, 20 May 2025 21:11:36 +0200 Subject: [PATCH] rename bundle.css to style.css --- eleventy.config.js | 4 ++-- index.html | 2 +- bundle.css => style.css | 0 3 files changed, 3 insertions(+), 3 deletions(-) rename bundle.css => style.css (100%) diff --git a/eleventy.config.js b/eleventy.config.js index 373a667..9124cc0 100644 --- a/eleventy.config.js +++ b/eleventy.config.js @@ -1,7 +1,7 @@ export default function (eleventyConfig) { - eleventyConfig.addPassthroughCopy("bundle.css"); + eleventyConfig.addPassthroughCopy("style.css"); - eleventyConfig.addWatchTarget("bundle.css"); + eleventyConfig.addWatchTarget("style.css"); eleventyConfig.setServerPassthroughCopyBehavior("passthrough"); } diff --git a/index.html b/index.html index 4ef5b4e..f32523e 100644 --- a/index.html +++ b/index.html @@ -4,7 +4,7 @@ xunuwu - +
diff --git a/bundle.css b/style.css similarity index 100% rename from bundle.css rename to style.css