File size: 549 Bytes
4dcc03d c73f86b 06ea972 4dcc03d c73f86b 4dcc03d a56688a 4dcc03d a56688a 4dcc03d a56688a 4dcc03d d9dddec 4dcc03d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
import { defineConfig } from "astro/config";
import tailwind from "@astrojs/tailwind";
import react from "@astrojs/react";
import mdx from "@astrojs/mdx";
import compress from "astro-compress";
// https://astro.build/config
export default defineConfig({
build: {
format: "file",
},
markdown: {
shikiConfig: {
// theme: "material-theme"
theme: "monokai",
// theme: 'poimandres'
},
},
integrations: [
tailwind(),
react(),
mdx(),
compress({
CSS: false,
JS: false,
}),
],
});
|