mirror of
https://github.com/sammyshear/sshear.dev.git
synced 2025-12-06 03:15:53 +00:00
18 lines
342 B
JavaScript
18 lines
342 B
JavaScript
import { defineConfig } from "astro/config";
|
|
|
|
import tailwind from "@astrojs/tailwind";
|
|
import react from "@astrojs/react";
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
integrations: [tailwind(), react()],
|
|
markdown: {
|
|
shikiConfig: {
|
|
themes: {
|
|
light: "catppuccin-latte",
|
|
dark: "catppuccin-mocha"
|
|
}
|
|
}
|
|
}
|
|
});
|