Files
vercel__next.js/examples/with-edgedb/tailwind.config.js
Hayden Bleasel 22e46a40ad Migrate from react-markdown to Streamdown static in EdgeDB example (#86435)
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>
2026-02-21 00:39:53 +01:00

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: [],
};