Additions/55 back button navigation (#1016)

feat: new angular back button navigation challenge
This commit is contained in:
Tsironis Ioannis
2024-07-01 11:59:13 +03:00
committed by GitHub
parent d05c279e67
commit 7335c396b8
35 changed files with 493 additions and 15 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: [],
};