[monorepo][m] - restructuring

- renamed apps to examples
- renamed libs to packages
- fixed data-literate build
This commit is contained in:
Luccas Mateus de Medeiros Gomes
2023-04-11 13:23:53 -03:00
parent ca3eccad86
commit b2438e655f
161 changed files with 6997 additions and 4524 deletions

View File

@@ -0,0 +1,17 @@
const { createGlobPatternsForDependencies } = require('@nrwl/react/tailwind');
const { join } = require('path');
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
join(
__dirname,
'{src,pages,components}/**/*!(*.stories|*.spec).{ts,tsx,html,js,jsx}'
),
...createGlobPatternsForDependencies(__dirname),
],
theme: {
extend: {},
},
plugins: [],
};