astro-ghostcms/playground/astro.config.mjs

19 lines
511 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";
2024-01-31 21:49:30 +00:00
import tailwind from "@astrojs/tailwind";
2024-01-23 18:51:23 +00:00
// https://astro.build/config
export default defineConfig({
site: "https://demo.astro-ghostcms.xyz/",
2024-01-31 21:12:54 +00:00
integrations: [tailwind(),
2024-01-26 13:10:34 +00:00
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,
theme: "@matthiesenxyz/astro-ghostcms-catppuccin",
2024-01-26 13:10:34 +00:00
ghostURL: "https://ghostdemo.matthiesen.xyz",
})
],
2024-01-23 18:51:23 +00:00
});