[/][s]: configure storybook with tailwind

This commit is contained in:
Ola Rubaj
2023-08-08 19:00:34 +02:00
parent 16e9fe4d60
commit 09f0c18b66
4 changed files with 31 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
// libs/shared/ui/postcss.config.js
const { join } = require('path');
module.exports = {
plugins: {
tailwindcss: {
config: join(__dirname, 'tailwind.config.js'),
},
autoprefixer: {},
},
};