[example][m] - start of ckan-example

This commit is contained in:
Luccas Mateus de Medeiros Gomes
2023-04-19 12:35:37 -03:00
parent 83bffccf52
commit 234bbcec49
26 changed files with 688 additions and 0 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}'
),
...createGlobPatternsForDependencies(__dirname),
],
theme: {
extend: {},
},
plugins: [],
};