Last active
October 22, 2024 21:05
-
-
Save marpe/d3a211f5764989a266c360d7c9d6ca95 to your computer and use it in GitHub Desktop.
astro.config.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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