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

24 lines
578 B
JavaScript
Raw Permalink 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",
astroRemote: {
enable: true,
},
},
verbose: true,
}),
2024-01-26 13:10:34 +00:00
],
2024-01-23 18:51:23 +00:00
});