Files
saas/frontend/tailwind.config.js
AHMET YILMAZ 6e7a8c784b
Some checks failed
CI Pipeline / Lint & Test Frontend (push) Has been cancelled
CI Pipeline / Test Backend (push) Has been cancelled
first intial
2025-09-16 22:59:46 +08:00

24 lines
942 B
JavaScript

// const { createGlobPatternsForDependencies } = require('@nx/next/tailwind');
// The above utility import will not work if you are using Next.js' --turbo.
// Instead you will have to manually add the dependent paths to be included.
// For example
// ../libs/buttons/**/*.{ts,tsx,js,jsx,html}', <--- Adding a shared lib
// !../libs/buttons/**/*.{stories,spec}.{ts,tsx,js,jsx,html}', <--- Skip adding spec/stories files from shared lib
// If you are **not** using `--turbo` you can uncomment both lines 1 & 19.
// A discussion of the issue can be found: https://github.com/nrwl/nx/issues/26510
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./{src,pages,components,app}/**/*.{ts,tsx,js,jsx,html}',
'!./{src,pages,components,app}/**/*.{stories,spec}.{ts,tsx,js,jsx,html}',
// ...createGlobPatternsForDependencies(__dirname)
],
theme: {
extend: {},
},
plugins: [],
};