mirror of
https://github.com/harivansh-afk/deskctl.git
synced 2026-04-17 00:04:52 +00:00
site init (barrett)
This commit is contained in:
parent
f05f441dee
commit
d5db569030
15 changed files with 5862 additions and 0 deletions
22
site/astro.config.mjs
Normal file
22
site/astro.config.mjs
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
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,
|
||||
},
|
||||
},
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue