mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2026-07-23 08:23:33 +10:00
14 lines
421 B
JavaScript
14 lines
421 B
JavaScript
const { createGlobPatternsForDependencies } = require("@nx/react/tailwind");
|
|
const { join } = require("path");
|
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
darkMode: "class",
|
|
content: [
|
|
join(__dirname, "{src,pages,components,app}/**/*!(*.stories|*.spec).{ts,tsx,html}"),
|
|
...createGlobPatternsForDependencies(__dirname),
|
|
],
|
|
theme: {},
|
|
plugins: [require("@tailwindcss/typography")],
|
|
};
|