2024-01-14 20:08:59 +01:00
|
|
|
import { defineConfig } from '$fresh/server.ts'
|
2024-06-10 22:41:10 +02:00
|
|
|
import { cssBundler } from '@jotsr/smart-css-bundler/fresh'
|
2024-01-14 20:08:59 +01:00
|
|
|
|
2024-02-05 12:30:46 +01:00
|
|
|
export default defineConfig({
|
|
|
|
plugins: [
|
2024-06-06 16:33:59 +02:00
|
|
|
cssBundler(
|
2024-06-10 22:41:10 +02:00
|
|
|
['./src/stylesheets/main.css'],
|
|
|
|
{
|
|
|
|
cacheDir: './_fresh/smart_css_bundler/cache',
|
|
|
|
externalPaths: [],
|
|
|
|
}
|
2024-06-06 16:33:59 +02:00
|
|
|
),
|
2024-02-05 12:30:46 +01:00
|
|
|
],
|
|
|
|
})
|