9 lines
229 B
TypeScript
9 lines
229 B
TypeScript
import { defineConfig } from '$fresh/server.ts'
|
|
import { cssBundler } from '@jotsr/smart-css-bundler/fresh'
|
|
|
|
export default defineConfig({
|
|
plugins: [
|
|
cssBundler(['./src/stylesheets/main.css'], { bundleSubDir: 'css' }),
|
|
],
|
|
})
|