feat: create challenge 50 on issues with effect (#841)

This commit is contained in:
Laforge Thomas
2024-05-07 14:41:23 +02:00
committed by GitHub
parent 63528e4c89
commit bfe7f23105
24 changed files with 288 additions and 18 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: [],
};