diff options
author | eug-vs <eug-vs@keemail.me> | 2021-03-13 21:54:30 +0300 |
---|---|---|
committer | eug-vs <eug-vs@keemail.me> | 2021-03-13 22:42:31 +0300 |
commit | 1b6e230df7ffd31226af1716f5e442c134ea1c38 (patch) | |
tree | d14d71bd7b0073343296b646cb8bf8826bcad31e /tailwind.config.js | |
parent | 58c47725b9f2c171065b9e35cdbc0e4525ec7255 (diff) | |
download | commercel-ui-1b6e230df7ffd31226af1716f5e442c134ea1c38.tar.gz |
feat: install tailwindcss
Diffstat (limited to 'tailwind.config.js')
-rw-r--r-- | tailwind.config.js | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tailwind.config.js b/tailwind.config.js new file mode 100644 index 0000000..47699f6 --- /dev/null +++ b/tailwind.config.js @@ -0,0 +1,11 @@ +module.exports = { + purge: ['./src/**/*.{js,jsx,ts,tsx}', './public/index.html'], + darkMode: false, // or 'media' or 'class' + theme: { + extend: {}, + }, + variants: { + extend: {}, + }, + plugins: [] +} |