feat: add mdx

This commit is contained in:
p-sw 2024-05-31 21:08:54 +09:00
parent f12a46ef79
commit 5d0ee14098
3 changed files with 1058 additions and 10 deletions

View File

@ -12,6 +12,7 @@
"build-storybook": "storybook build"
},
"dependencies": {
"@mdx-js/react": "^3.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.23.1",
@ -19,6 +20,7 @@
},
"devDependencies": {
"@chromatic-com/storybook": "^1.3.5",
"@mdx-js/rollup": "^3.0.1",
"@storybook/addon-essentials": "^8.1.0",
"@storybook/addon-interactions": "^8.1.0",
"@storybook/addon-links": "^8.1.0",
@ -28,6 +30,7 @@
"@storybook/react": "^8.1.0",
"@storybook/react-vite": "^8.1.0",
"@storybook/test": "^8.1.0",
"@types/mdx": "^2.0.13",
"@types/react": "^18.2.66",
"@types/react-dom": "^18.2.22",
"@types/react-router-dom": "^5.3.3",

View File

@ -1,10 +1,11 @@
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
import tailwindcss from "tailwindcss";
import mdx from '@mdx-js/rollup';
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react()],
plugins: [react(), mdx()],
css: {
postcss: {
plugins: [tailwindcss()],

1062
yarn.lock

File diff suppressed because it is too large Load Diff