feat(doc): move permissions

This commit is contained in:
thomas
2023-10-18 10:02:38 +02:00
parent 5ea1d0c1c7
commit 7c52b6099f
26 changed files with 23 additions and 23 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: [],
};