2024-01-14 20:08:59 +01:00
|
|
|
import { defineConfig } from '$fresh/server.ts'
|
2024-02-05 12:30:46 +01:00
|
|
|
import { cssBundler } from './plugins/css_bundler/plugin.ts'
|
2024-01-14 20:08:59 +01:00
|
|
|
|
2024-02-05 12:30:46 +01:00
|
|
|
export default defineConfig({
|
|
|
|
plugins: [
|
2024-02-06 10:22:30 +01:00
|
|
|
cssBundler(import.meta.resolve('./src/stylesheets'), { logLevel: 'error' }),
|
2024-02-05 12:30:46 +01:00
|
|
|
],
|
|
|
|
})
|