15 lines
359 B
JavaScript
15 lines
359 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}"),
|
|
...createGlobPatternsForDependencies(__dirname),
|
|
],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [],
|
|
};
|