2023-05-05 14:01:09 +04:00
|
|
|
import { defineConfig } from 'astro/config';
|
|
|
|
|
|
|
|
import compress from "astro-compress";
|
2023-06-19 21:32:05 +04:00
|
|
|
|
2023-06-18 20:00:53 +04:00
|
|
|
import remarkPostMeta from './remark-post-meta.mjs';
|
2023-06-19 21:32:05 +04:00
|
|
|
|
2023-06-18 18:55:51 +04:00
|
|
|
import { rehypeHeadingIds } from '@astrojs/markdown-remark';
|
|
|
|
import rehypeSlug from 'rehype-slug';
|
|
|
|
import rehypeAutolinkHeadings from 'rehype-autolink-headings';
|
2023-06-19 21:32:05 +04:00
|
|
|
|
2023-06-18 20:00:53 +04:00
|
|
|
import rehypeFigure from 'rehype-figure';
|
2023-05-05 14:01:09 +04:00
|
|
|
|
|
|
|
export default defineConfig({
|
2023-06-18 18:10:29 +04:00
|
|
|
integrations: [compress()],
|
|
|
|
build: {
|
|
|
|
format: "directory"
|
|
|
|
},
|
|
|
|
markdown: {
|
|
|
|
syntaxHighlight: "shiki",
|
2023-06-18 20:00:53 +04:00
|
|
|
remarkPlugins: [
|
|
|
|
remarkPostMeta,
|
|
|
|
],
|
2023-06-18 18:55:51 +04:00
|
|
|
rehypePlugins: [
|
|
|
|
rehypeSlug,
|
|
|
|
rehypeHeadingIds,
|
|
|
|
[
|
|
|
|
rehypeAutolinkHeadings,
|
|
|
|
{ behavior: "append" },
|
|
|
|
],
|
2023-06-19 21:32:05 +04:00
|
|
|
rehypeFigure,
|
2023-06-18 18:55:51 +04:00
|
|
|
],
|
2023-06-18 18:10:29 +04:00
|
|
|
},
|
2023-07-23 18:37:30 +04:00
|
|
|
redirects: {
|
2023-07-23 18:46:51 +04:00
|
|
|
"/blog": "/blog/page1",
|
2023-07-23 18:37:30 +04:00
|
|
|
}
|
2023-05-05 14:01:09 +04:00
|
|
|
});
|