29 lines
821 B
JavaScript
29 lines
821 B
JavaScript
import cloudflare from "@astrojs/cloudflare";
|
|
import react from "@astrojs/react";
|
|
import { d1, r2, sandbox } from "@emdash-cms/cloudflare";
|
|
import { formsPlugin } from "@emdash-cms/plugin-forms";
|
|
import { webhookNotifierPlugin } from "@emdash-cms/plugin-webhook-notifier";
|
|
import { defineConfig } from "astro/config";
|
|
import emdash from "emdash/astro";
|
|
|
|
export default defineConfig({
|
|
output: "server",
|
|
adapter: cloudflare(),
|
|
image: {
|
|
layout: "constrained",
|
|
responsiveStyles: true,
|
|
},
|
|
integrations: [
|
|
react(),
|
|
emdash({
|
|
database: d1({ binding: "DB", session: "auto" }),
|
|
storage: r2({ binding: "MEDIA" }),
|
|
plugins: [formsPlugin()],
|
|
sandboxed: [webhookNotifierPlugin()],
|
|
sandboxRunner: sandbox(),
|
|
marketplace: "https://marketplace.emdashcms.com",
|
|
}),
|
|
],
|
|
devToolbar: { enabled: false },
|
|
});
|