19 lines
511 B
JavaScript
19 lines
511 B
JavaScript
import { defineConfig } from "astro/config";
|
|
import ghostcms from "@matthiesenxyz/astro-ghostcms";
|
|
import tailwind from "@astrojs/tailwind";
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
site: "https://demo.astro-ghostcms.xyz/",
|
|
integrations: [tailwind(),
|
|
ghostcms({
|
|
disable404: false,
|
|
disableRSS: false,
|
|
disableRouteInjection: false,
|
|
disableConsoleOutput: false,
|
|
theme: "@matthiesenxyz/astro-ghostcms-catppuccin",
|
|
ghostURL: "https://ghostdemo.matthiesen.xyz",
|
|
})
|
|
],
|
|
});
|