mirror of https://github.com/gabehf/mnrva.dev.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
464 B
19 lines
464 B
import { defineConfig } from "astro/config";
|
|
import tailwind from "@astrojs/tailwind";
|
|
import sitemap from "@astrojs/sitemap";
|
|
import robotsTxt from "astro-robots-txt";
|
|
import { SITE_URL } from "./src/data/config";
|
|
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
integrations: [tailwind(), sitemap(), robotsTxt()],
|
|
site: SITE_URL,
|
|
markdown: {
|
|
syntaxHighlight: "shiki",
|
|
shikiConfig: {
|
|
theme: "nord",
|
|
wrap: false
|
|
}
|
|
}
|
|
}); |