import node from "@astrojs/node"; import react from "@astrojs/react"; import { auditLogPlugin } from "@emdashcms/plugin-audit-log"; import { defineConfig } from "astro/config"; import emdash, { local } from "emdash/astro"; import { sqlite } from "emdash/db"; export default defineConfig({ output: "server", adapter: node({ mode: "standalone", }), image: { layout: "constrained", responsiveStyles: true, }, integrations: [ react(), emdash({ database: sqlite({ url: "file:./data.db" }), storage: local({ directory: "./uploads", baseUrl: "/_emdash/api/media/file", }), plugins: [auditLogPlugin()], }), ], devToolbar: { enabled: false }, });