mirror of
https://github.com/vercel/next.js.git
synced 2026-09-20 02:25:18 +08:00
22e46a40ad
This pull request updates the blog post rendering in the EdgeDB example to use our `streamdown` library in static mode instead of `react-markdown` for Markdown parsing and rendering. --------- Co-authored-by: Joseph <joseph.chamochumbi@vercel.com>
12 lines
225 B
JavaScript
12 lines
225 B
JavaScript
module.exports = {
|
|
content: [
|
|
"./pages/**/*.{js,ts,jsx,tsx}",
|
|
"./components/**/*.{js,ts,jsx,tsx}",
|
|
"./node_modules/streamdown/dist/*.js", // For Streamdown
|
|
],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [],
|
|
};
|