Skip to content

Instantly share code, notes, and snippets.

@marpe
Last active October 22, 2024 21:05
Show Gist options
  • Save marpe/d3a211f5764989a266c360d7c9d6ca95 to your computer and use it in GitHub Desktop.
Save marpe/d3a211f5764989a266c360d7c9d6ca95 to your computer and use it in GitHub Desktop.
astro.config.ts
import db from "@astrojs/db";
import mdx from "@astrojs/mdx";
import node from "@astrojs/node";
import vue from "@astrojs/vue";
import { defineConfig } from "astro/config";
export default defineConfig({
// base: new URL("./", import.meta.url).pathname,
integrations: [
db(),
mdx({
gfm: true,
}),
vue(),
],
db: {},
vite: {},
output: "server",
adapter: node({
mode: "standalone",
}),
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment