21 lines
449 B
JavaScript
21 lines
449 B
JavaScript
const { createGlobPatternsForDependencies } = require('@nx/react/tailwind');
|
|
const { join } = require('path');
|
|
|
|
module.exports = {
|
|
content: [
|
|
join(
|
|
__dirname,
|
|
'{src,pages,components,app}/**/*!(*.stories|*.spec).{ts,tsx,html}'
|
|
),
|
|
...createGlobPatternsForDependencies(__dirname),
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
primary: '#090b13',
|
|
secondary: '#0b101b',
|
|
}
|
|
},
|
|
},
|
|
plugins: [],
|
|
}; |