website/fresh.config.ts

10 lines
262 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'] //TODO fix bundler out paths , { bundleSubDir: 'css' }
),
],
})