astro-ghostcms/packages/create-astro-ghostcms/t2/astro.config.mjs

11 lines
279 B
JavaScript

import { defineConfig } from 'astro/config';
import GhostCMS from "@matthiesenxyz/astro-ghostcms";
// https://astro.build/config
export default defineConfig({
site: "https://example.com/",
integrations: [GhostCMS({
ghostURL: 'https://ghostdemo.matthiesen.xyz'
})]
});