feat: challenge 43 input signal

This commit is contained in:
thomas
2024-01-15 21:41:57 +01:00
parent ef1f6b644c
commit 79b0301a87
21 changed files with 328 additions and 10 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: [],
};