feat(doc): move module to standalone

This commit is contained in:
thomas
2023-10-18 10:01:49 +02:00
parent 5ec510269d
commit f96e9f3f80
15 changed files with 31 additions and 31 deletions

View File

@@ -0,0 +1,14 @@
const { createGlobPatternsForDependencies } = require('@nx/angular/tailwind');
const { join } = require('path');
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'apps/module-to-standalone/**/*.{ts,html}',
'libs/module-to-standalone/**/*.{ts,html}',
],
theme: {
extend: {},
},
plugins: [],
};