fix(react): add app directory in the default tailwind.config.js (#16656)

This commit is contained in:
Hisam Fahri 2023-05-05 19:51:15 +07:00 committed by GitHub
parent 0b02e98d46
commit 402ccbf182
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -85,7 +85,7 @@ module.exports = {
content: [ content: [
join( join(
__dirname, __dirname,
'{src,pages,components}/**/*!(*.stories|*.spec).{ts,tsx,html}' '{src,pages,components,app}/**/*!(*.stories|*.spec).{ts,tsx,html}'
), ),
...createGlobPatternsForDependencies(__dirname), ...createGlobPatternsForDependencies(__dirname),
], ],

View File

@ -6,7 +6,7 @@ module.exports = {
content: [ content: [
join( join(
__dirname, __dirname,
'{src,pages,components}/**/*!(*.stories|*.spec).{ts,tsx,html}' '{src,pages,components,app}/**/*!(*.stories|*.spec).{ts,tsx,html}'
), ),
...createGlobPatternsForDependencies(__dirname), ...createGlobPatternsForDependencies(__dirname),
], ],