feat(challenge): create challenge 32 about bug CD

This commit is contained in:
ThomasL
2023-07-25 16:29:49 +02:00
parent 2dc2fd7dfd
commit 9799c4c1e7
22 changed files with 431 additions and 1 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: [],
};