Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
dcschmid committed Aug 20, 2024
1 parent c839a7e commit 9829340
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -2,23 +2,21 @@ import { defineConfig } from "astro/config";
import icon from "astro-icon";
import playformCompress from "@playform/compress";
import db from "@astrojs/db";
import cloudflare from "@astrojs/cloudflare";

import node from "@astrojs/node";

// https://astro.build/config
export default defineConfig({
output: "server",
integrations: [icon(), playformCompress(), db()],
adapter: node({
mode: "standalone"
mode: "standalone",
}),
vite: {
optimizeDeps: {
exclude: ["astro:db"]
}
exclude: ["astro:db"],
},
},
security: {
checkOrigin: true
}
});
checkOrigin: true,
},
});

0 comments on commit 9829340

Please sign in to comment.