website/fresh.config.ts

13 lines
264 B
TypeScript
Raw Normal View History

2024-01-14 20:08:59 +01:00
import { defineConfig } from '$fresh/server.ts'
import { cssBundler } from 'css_bundler'
2024-01-14 20:08:59 +01:00
export default defineConfig({
plugins: [
cssBundler(
import.meta.resolve('./src/stylesheets'),
import.meta.resolve('./cache'),
{ logLevel: 'error' },
),
],
})