fix(challenge 48): challenge naming

This commit is contained in:
Sven Brodny
2024-04-18 14:55:53 +02:00
parent a691a7e2f9
commit 97026895f0
26 changed files with 21 additions and 21 deletions

View File

@@ -0,0 +1,16 @@
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: [
require('@tailwindcss/forms'),
],
};