astro-ghostcms/playground/astro.config.mjs

22 lines
590 B
JavaScript
Raw Normal View History

2024-01-23 18:51:23 +00:00
import ghostcms from "@matthiesenxyz/astro-ghostcms";
import { defineConfig } from "astro/config";
2024-02-10 15:43:11 +00:00
//import tailwind from "@astrojs/tailwind";
import UnoCSS from "unocss/astro";
2024-01-23 18:51:23 +00:00
// https://astro.build/config
export default defineConfig({
site: "https://demo.astro-ghostcms.xyz/",
2024-02-10 15:43:11 +00:00
integrations: [
//tailwind(),
UnoCSS({ injectReset: true }),
2024-01-26 13:10:34 +00:00
ghostcms({
2024-01-26 13:43:21 +00:00
disable404: false,
disableRSS: false,
2024-01-26 13:10:34 +00:00
disableRouteInjection: false,
2024-01-26 13:43:21 +00:00
disableConsoleOutput: false,
2024-02-10 15:43:11 +00:00
theme: "@matthiesenxyz/astro-ghostcms-brutalbyelian",
2024-01-26 13:10:34 +00:00
ghostURL: "https://ghostdemo.matthiesen.xyz",
}),
2024-01-26 13:10:34 +00:00
],
2024-01-23 18:51:23 +00:00
});