feat(challenge5): add permissions challenge 5

This commit is contained in:
thomas laforge
2022-11-20 21:51:22 +01:00
parent 31d4662a55
commit e0e8dfe9a6
26 changed files with 548 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
const { createGlobPatternsForDependencies } = require('@nrwl/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: [],
};