website/fresh.config.ts

15 lines
295 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'],
{
cacheDir: './_fresh/smart_css_bundler/cache',
externalPaths: [],
}
),
],
})