mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-15 17:31:56 +03:00
15 lines
394 B
JavaScript
15 lines
394 B
JavaScript
|
const { createGlobPatternsForDependencies } = require('@nrwl/react/tailwind');
|
||
|
const { join } = require('path');
|
||
|
const tailwindConfig = require('../../../tailwind.config.js');
|
||
|
|
||
|
module.exports = {
|
||
|
content: [
|
||
|
join(
|
||
|
__dirname,
|
||
|
'{src,pages,components}/**/*!(*.stories|*.spec).{ts,tsx,html}'
|
||
|
),
|
||
|
...createGlobPatternsForDependencies(__dirname),
|
||
|
],
|
||
|
...tailwindConfig,
|
||
|
};
|