const { createGlobPatternsForDependencies } = require('@nrwl/react/tailwind'); const { join } = require('path'); /** @type {import('tailwindcss').Config} */ module.exports = { content: [ "node_modules/@flowershow/core/dist/*.js", "node_modules/@flowershow/core/*.js", join( __dirname, '{src,pages,components}/**/*!(*.stories|*.spec).{ts,tsx,html}' ), ...createGlobPatternsForDependencies(__dirname), ], theme: { extend: {}, }, plugins: [ require('@tailwindcss/typography'), ], };