website/fresh.config.ts

9 lines
229 B
TypeScript
Raw Normal View History

2024-01-14 20:08:59 +01:00
import { defineConfig } from '$fresh/server.ts'
import { cssBundler } from '@jotsr/smart-css-bundler/fresh'
2024-01-14 20:08:59 +01:00
export default defineConfig({
plugins: [
cssBundler(['./src/stylesheets/main.css'], { bundleSubDir: 'css' }),
],
})