feat(challenge37): ngfor optimize big list

This commit is contained in:
thomas
2023-10-07 20:58:25 +02:00
parent 6c2da1bcde
commit cdf6df005a
24 changed files with 418 additions and 8 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: [],
};