| const { createGlobPatternsForDependencies } = require("@nx/react/tailwind"); | |
| const { join } = require("path"); | |
| /** @type {import('tailwindcss').Config} */ | |
| module.exports = { | |
| presets: [require("../../tailwind.config.js")], | |
| content: [ | |
| join(__dirname, "{src,pages,components,app}/**/*!(*.stories|*.spec).{ts,tsx,html}"), | |
| ...createGlobPatternsForDependencies(__dirname), | |
| ], | |
| }; | |