1
0
Fork 0

feat: add TailwindCSS

This commit is contained in:
Vojtěch Mareš 2022-09-19 21:56:57 +02:00
parent c5057c5cf6
commit 1188d24fd8
Signed by: vojtech.mares
GPG key ID: C6827B976F17240D
11 changed files with 410 additions and 71 deletions

View file

@ -0,0 +1,6 @@
{
"name": "config",
"version": "0.0.0",
"dependencies": {}
}

View file

@ -0,0 +1,7 @@
postcss.config.js
module.exports = {
plugins: {
tailwindcss: {},
autoprefixer: {}
}
}

View file

@ -0,0 +1,10 @@
module.exports = {
content: [
'../../packages/ui/components/**/*.{ts,tsx}',
'./src/**/*.{ts,tsx}'
],
theme: {
extend: {}
},
plugins: []
}

View file

@ -0,0 +1 @@
module.exports = require('config/postcss.config')

View file

@ -0,0 +1 @@
module.exports = require('config/tailwind.config')