feat: challage 38 - rxjs catch error

This commit is contained in:
Devesh
2023-10-14 01:24:27 +05:30
parent dc9f47e01b
commit ccb3b106dc
23 changed files with 412 additions and 6 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: [],
};