feat(config): 🔧 update css bundler config

This commit is contained in:
Julien Oculi 2024-06-06 16:33:59 +02:00
parent e8300beead
commit 1e2630988f

View file

@ -3,6 +3,10 @@ import { cssBundler } from 'css_bundler'
export default defineConfig({ export default defineConfig({
plugins: [ plugins: [
cssBundler(import.meta.resolve('./src/stylesheets'), { logLevel: 'error' }), cssBundler(
import.meta.resolve('./src/stylesheets'),
import.meta.resolve('./cache'),
{ logLevel: 'error' },
),
], ],
}) })