From 266dfbefdfa511a57207748049f13b9c5e89fd48 Mon Sep 17 00:00:00 2001 From: Nicholas Lamicela Date: Tue, 24 Dec 2024 13:07:30 -0800 Subject: [PATCH] no top level bundles --- eleventy.config.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/eleventy.config.js b/eleventy.config.js index a5a12df..cc388c8 100644 --- a/eleventy.config.js +++ b/eleventy.config.js @@ -31,7 +31,9 @@ export default function(eleventyConfig) { eleventyConfig.addWatchTarget("content/**/*.{svg,webp,png,jpeg}"); // Official plugins - eleventyConfig.addBundle('css'); + eleventyConfig.addBundle('css', { + toFileDirectory: 'bundle', + }); eleventyConfig.addPlugin(pluginSyntaxHighlight, { preAttributes: { tabindex: 0 } });