* [example][m] - start of a simple-example * Empty-Commit * [simple-example][sm] - change from repos.json to datasets.json * [example][m] - changed styling and added octokit * [build][sm] - fix build
22 lines
533 B
JavaScript
22 lines
533 B
JavaScript
const { createGlobPatternsForDependencies } = require('@nrwl/react/tailwind');
|
|
const { join } = require('path');
|
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
"node_modules/@flowershow/core/dist/*.js",
|
|
"node_modules/@flowershow/core/*.js",
|
|
join(
|
|
__dirname,
|
|
'{src,pages,components}/**/*!(*.stories|*.spec).{ts,tsx,html}'
|
|
),
|
|
...createGlobPatternsForDependencies(__dirname),
|
|
],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [
|
|
require('@tailwindcss/typography'),
|
|
],
|
|
};
|