astro-ghostcms/demo/astro.config.mjs

11 lines
291 B
JavaScript
Raw Normal View History

2024-01-23 20:03:56 +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:47:41 +00:00
integrations: [GhostCMS({
ghostURL: 'https://ghostdemo.matthiesen.xyz'
})]
2024-01-23 20:03:56 +00:00
});