зеркало из https://github.com/mozilla/fxa.git
16 строки
399 B
JavaScript
16 строки
399 B
JavaScript
const { createGlobPatternsForDependencies } = require('@nx/react/tailwind');
|
|
const { join } = require('path');
|
|
|
|
module.exports = {
|
|
presets: [
|
|
require('../../../libs/shared/styles/src/configs/tailwind.config')
|
|
],
|
|
content: [
|
|
join(
|
|
__dirname,
|
|
'{src,pages,components,app}/**/*!(*.stories|*.spec).{ts,tsx,html}'
|
|
),
|
|
...createGlobPatternsForDependencies(__dirname),
|
|
]
|
|
}
|