mirror of
https://github.com/harivansh-afk/deskctl.git
synced 2026-04-15 20:03:09 +00:00
22 lines
444 B
JavaScript
22 lines
444 B
JavaScript
import { defineConfig } from "astro/config";
|
|
import mdx from "@astrojs/mdx";
|
|
import vercel from "@astrojs/vercel";
|
|
import { midnight, daylight } from "./src/themes.mjs";
|
|
|
|
export default defineConfig({
|
|
output: "static",
|
|
adapter: vercel(),
|
|
build: {
|
|
format: "file",
|
|
},
|
|
integrations: [mdx()],
|
|
markdown: {
|
|
shikiConfig: {
|
|
themes: {
|
|
light: daylight,
|
|
dark: midnight,
|
|
},
|
|
wrap: true,
|
|
},
|
|
},
|
|
});
|