astro-ghostcms/playground/astro.config.mjs

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