mirror of
https://github.com/bspeice/speice.io
synced 2024-12-22 08:38:09 -05:00
32 lines
951 B
TypeScript
32 lines
951 B
TypeScript
import { defineConfig } from "vite";
|
|
import blog from "@bspeice/vite-plugin-blog";
|
|
import mdx from "@mdx-js/rollup";
|
|
import react from "@vitejs/plugin-react-swc";
|
|
import rehypeHighlight from "rehype-highlight";
|
|
import rehypeKatex from "rehype-katex";
|
|
import remarkFrontmatter from "remark-frontmatter";
|
|
import remarkMath from "remark-math";
|
|
import remarkMdxFrontmatter from "remark-mdx-frontmatter";
|
|
|
|
export default defineConfig({
|
|
build: {
|
|
rollupOptions: {
|
|
external: ["react-icons"],
|
|
},
|
|
},
|
|
plugins: [
|
|
blog({
|
|
"/": "/pages/index.tsx",
|
|
"/about": "/pages/about.mdx",
|
|
"/2019/02/the-whole-world": "/posts/2019/02/the-whole-world.mdx",
|
|
"/2023/06/flam3": "/posts/2023/06/flam3/index.tsx",
|
|
}),
|
|
mdx({
|
|
remarkPlugins: [remarkFrontmatter, remarkMath, remarkMdxFrontmatter],
|
|
rehypePlugins: [rehypeHighlight, rehypeKatex],
|
|
providerImportSource: "@mdx-js/react",
|
|
}),
|
|
react(),
|
|
],
|
|
});
|