16 lines
427 B
JavaScript
16 lines
427 B
JavaScript
import { defineConfig } from "astro/config";
|
|
import ghostcms from "@matthiesenxyz/astro-ghostcms";
|
|
import UnoCSS from 'unocss/astro';
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
site: "https://brutal-demo.astro-ghostcms.xyz/",
|
|
integrations: [
|
|
UnoCSS({ injectReset: true }),
|
|
ghostcms({
|
|
theme: "@matthiesenxyz/astro-ghostcms-brutalbyelian",
|
|
ghostURL: "https://ghostdemo.matthiesen.xyz",
|
|
})
|
|
],
|
|
});
|