import { defineConfig } from '$fresh/server.ts' import { cssBundler } from 'css_bundler' export default defineConfig({ plugins: [ cssBundler(import.meta.resolve('./src/stylesheets'), { logLevel: 'error' }), ], })