9 lines
215 B
TypeScript
9 lines
215 B
TypeScript
import { defineConfig } from '$fresh/server.ts'
|
|
import { cssBundler } from './plugins/css_bundler/plugin.ts'
|
|
|
|
export default defineConfig({
|
|
plugins: [
|
|
cssBundler(import.meta.resolve('./src/stylesheets')),
|
|
],
|
|
})
|