refactor: remove useless dependencies for old docs
This commit is contained in:
parent
8eb378b1cc
commit
447b2249c8
@ -10,26 +10,14 @@
|
||||
"preview": "vite preview"
|
||||
},
|
||||
"dependencies": {
|
||||
"@mdx-js/react": "^3.0.1",
|
||||
"@stefanprobst/rehype-extract-toc": "^2.2.0",
|
||||
"highlight.js": "^11.9.0",
|
||||
"react": "^18.2.0",
|
||||
"react-dom": "^18.2.0",
|
||||
"react-router-dom": "^6.23.1",
|
||||
"react-syntax-highlighter": "^15.5.0",
|
||||
"rehype-slug": "^6.0.0",
|
||||
"remark-gfm": "^4.0.0",
|
||||
"tailwind-merge": "^2.3.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@mdx-js/rollup": "^3.0.1",
|
||||
"@tailwindcss/typography": "^0.5.13",
|
||||
"@types/mdx": "^2.0.13",
|
||||
"@types/node": "^20.12.13",
|
||||
"@types/react": "^18.2.66",
|
||||
"@types/react-dom": "^18.2.22",
|
||||
"@types/react-router-dom": "^5.3.3",
|
||||
"@types/react-syntax-highlighter": "^15",
|
||||
"@typescript-eslint/eslint-plugin": "^7.2.0",
|
||||
"@typescript-eslint/parser": "^7.2.0",
|
||||
"@vitejs/plugin-react": "^4.2.1",
|
||||
@ -41,7 +29,6 @@
|
||||
"postcss": "^8.4.38",
|
||||
"tailwindcss": "^3.4.3",
|
||||
"typescript": "^5.4.5",
|
||||
"vite": "^5.2.0",
|
||||
"vite-plugin-dynamic-import": "^1.5.0"
|
||||
"vite": "^5.2.0"
|
||||
}
|
||||
}
|
||||
|
@ -11,5 +11,4 @@ module.exports = {
|
||||
theme: {
|
||||
extend: {},
|
||||
},
|
||||
plugins: [require("@tailwindcss/typography"), require("tailwind-scrollbar")],
|
||||
};
|
||||
|
@ -1,23 +1,12 @@
|
||||
import { defineConfig } from "vite";
|
||||
import react from "@vitejs/plugin-react";
|
||||
import tailwindcss from "tailwindcss";
|
||||
import mdx from "@mdx-js/rollup";
|
||||
import { resolve } from "node:path";
|
||||
import remarkGfm from "remark-gfm";
|
||||
import withSlug from "rehype-slug";
|
||||
import withToc from "@stefanprobst/rehype-extract-toc";
|
||||
import withTocExport from "@stefanprobst/rehype-extract-toc/mdx";
|
||||
import dynamicImport from "vite-plugin-dynamic-import";
|
||||
|
||||
// https://vitejs.dev/config/
|
||||
export default defineConfig({
|
||||
plugins: [
|
||||
react(),
|
||||
mdx({
|
||||
rehypePlugins: [withSlug, withToc, withTocExport],
|
||||
remarkPlugins: [remarkGfm],
|
||||
}),
|
||||
dynamicImport(),
|
||||
react()
|
||||
],
|
||||
css: {
|
||||
postcss: {
|
||||
|
Loading…
x
Reference in New Issue
Block a user