From d8b79987cabe1f87601f328bd5f9f4115a41f6bb Mon Sep 17 00:00:00 2001 From: Julien Oculi Date: Thu, 20 Jun 2024 13:10:52 +0200 Subject: [PATCH] fix(config): :bug: disable css bundler bundle sub dir wating for package patch --- fresh.config.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/fresh.config.ts b/fresh.config.ts index cf807c5..f668bc5 100644 --- a/fresh.config.ts +++ b/fresh.config.ts @@ -3,6 +3,7 @@ import { cssBundler } from '@jotsr/smart-css-bundler/fresh' export default defineConfig({ plugins: [ - cssBundler(['./src/stylesheets/main.css'], { bundleSubDir: 'css' }), + cssBundler(['./src/stylesheets/main.css'] //TODO fix bundler out paths , { bundleSubDir: 'css' } + ), ], })