[example][m] - start of a simple-example

This commit is contained in:
Luccas Mateus de Medeiros Gomes
2023-04-18 08:19:58 -03:00
parent 34cbb1e8af
commit 751093baf6
43 changed files with 6837 additions and 238 deletions

View File

@@ -0,0 +1,21 @@
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'),
],
};