feat(doc): move todo-list

This commit is contained in:
thomas
2023-10-17 23:14:16 +02:00
parent 05951bd4df
commit ad3824aa79
36 changed files with 41 additions and 42 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: [],
};