astro-ghostcms/playground/astro.config.mjs

16 lines
417 B
JavaScript
Raw Normal View History

2024-01-23 18:51:23 +00:00
import { defineConfig } from "astro/config";
import ghostcms from "@matthiesenxyz/astro-ghostcms";
// https://astro.build/config
export default defineConfig({
site: "https://demo.astro-ghostcms.xyz/",
2024-01-26 13:10:34 +00:00
integrations: [
ghostcms({
disableConsoleOutput: true,
disableRouteInjection: false,
theme: "@matthiesenxyz/astro-ghostcms-theme-default",
ghostURL: "https://ghostdemo.matthiesen.xyz",
})
],
2024-01-23 18:51:23 +00:00
});