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-07-03 11:44:39 +02:00
|
|
|
cssBundler(
|
|
|
|
['./src/stylesheets/main.css'], //TODO fix bundler out paths , { bundleSubDir: 'css' }
|
|
|
|
{ externalPaths: ['assets'] },
|
2024-06-20 13:10:52 +02:00
|
|
|
),
|
2024-02-05 12:30:46 +01:00
|
|
|
],
|
|
|
|
})
|