feat(challenge30): challenge signal

This commit is contained in:
thomas
2023-07-10 22:58:16 +02:00
parent 12a04bef88
commit c5c4f2710c
22 changed files with 655 additions and 0 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: [],
};