This repository has been archived on 2025-07-20. You can view files and clone it, but cannot push or open issues or pull requests.
fediswald/apps/frontend/tailwind.config.js

18 lines
403 B
JavaScript
Raw Normal View History

2025-03-31 09:10:27 +03:00
const { createGlobPatternsForDependencies } = require('@nx/react/tailwind');
const { join } = require('path');
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
join(
__dirname,
'{src,pages,components,app}/**/*!(*.stories|*.spec).{ts,tsx,html}'
),
...createGlobPatternsForDependencies(__dirname),
],
theme: {
extend: {},
},
plugins: [],
};