2024-04-23 22:06:30 +00:00
|
|
|
import { defineConfig } from 'astro/config';
|
|
|
|
|
|
|
|
import tailwind from "@astrojs/tailwind";
|
|
|
|
|
|
|
|
// https://astro.build/config
|
|
|
|
export default defineConfig({
|
2024-05-26 01:44:27 +00:00
|
|
|
integrations: [tailwind()],
|
|
|
|
markdown: {
|
|
|
|
shikiConfig: {
|
|
|
|
themes: {
|
|
|
|
light: "catppuccin-latte",
|
|
|
|
dark: "github-dark"
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2024-04-23 22:06:30 +00:00
|
|
|
});
|