mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-10 04:22:27 +10:00
12 lines
388 B
JavaScript
12 lines
388 B
JavaScript
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),
|
|
],
|
|
};
|