Created
September 3, 2022 14:14
-
-
Save skolhustick/eb23eddc49a7297fe9ba862cd045ff1c to your computer and use it in GitHub Desktop.
astro-mongodob-astro.config.mjs
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
// astro.config.mjs | |
import { defineConfig } from "astro/config"; | |
import node from "@astrojs/node"; | |
import svelte from "@astrojs/svelte"; | |
export default defineConfig({ | |
output: "server", | |
adapter: node(), | |
integrations: [svelte()] | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment