astro-ghostcms/playgrounds/astro-playground/astro.config.mjs

21 lines
531 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";
///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({
ghostURL: 'https://ghostdemo.matthiesen.xyz',
ThemeProvider: {
theme: "@matthiesenxyz/astro-ghostcms-theme-default",
},
verbose: true,
}),
2024-01-26 13:10:34 +00:00
],
2024-01-23 18:51:23 +00:00
});