fix: bug in effect move

This commit is contained in:
thomas
2024-05-15 14:43:11 +02:00
parent 60c9964a9e
commit e90419be13
15 changed files with 16 additions and 16 deletions

View File

@@ -0,0 +1,14 @@
const { createGlobPatternsForDependencies } = require('@nx/angular/tailwind');
const { join } = require('path');
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
join(__dirname, 'src/**/!(*.stories|*.spec).{ts,html}'),
...createGlobPatternsForDependencies(__dirname),
],
theme: {
extend: {},
},
plugins: [],
};