Challenge 56 multi step reactive form and signals (#1030)

feat: challenge 55 form and signal
This commit is contained in:
Laforge Thomas
2024-07-08 17:11:41 +02:00
committed by GitHub
parent 45353aa55a
commit ddb5036af0
26 changed files with 505 additions and 17 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: [],
};