Files
angular-challenges/apps/angular/react-in-angular/tailwind.config.js
Wandrille 7458977d35 feat: add answer for challenge 45
add one possible answer for the new challenge 45.
2024-02-09 11:12:42 +01:00

15 lines
363 B
JavaScript

const { createGlobPatternsForDependencies } = require('@nx/angular/tailwind');
const { join } = require('path');
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
join(__dirname, 'src/**/!(*.stories|*.spec).{ts,html,tsx}'),
...createGlobPatternsForDependencies(__dirname),
],
theme: {
extend: {},
},
plugins: [],
};