astro-ghostcms/catppuccin-dark-demo/astro.config.mjs

15 lines
422 B
JavaScript
Raw Normal View History

2024-01-31 22:10:06 +00:00
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://catppuccindark-demo.astro-ghostcms.xyz/",
integrations: [tailwind(),
ghostcms({
theme: "@matthiesenxyz/astro-ghostcms-catppuccin-dark",
ghostURL: "https://ghostdemo.matthiesen.xyz",
})
],
});