website/fresh.config.ts

9 lines
215 B
TypeScript
Raw Normal View History

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