mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-15 01:12:56 +03:00
6289b06453
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6450 GitOrigin-RevId: 4ee8e72fe62edef0f04be9f6dc66b3788dc9a0f4
18 lines
457 B
JavaScript
18 lines
457 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,
|
|
'/**/!(*.stories|*.spec).{ts,tsx,jsx,js,html}'
|
|
),
|
|
],
|
|
...tailwindConfig,
|
|
};
|