-
-
Notifications
You must be signed in to change notification settings - Fork 227
Closed
Description
Trying to setup tailwind with our Angular project, and it does not work 🤔
tailwind.config.js
module.exports = { theme: { extend: {} }, variants: {}, plugins: [] };
webpack.config.js
module.exports = {
module: {
rules: [
{
test: /\.scss$/,
loader: 'postcss-loader',
options: {
ident: 'postcss',
syntax: 'postcss-scss',
plugins: () => [
require('postcss-import'),
require('tailwindcss')('./tailwind.config.js'),
require('autoprefixer'),
]
}
}
]
}
};
package.json
"devDependencies": {
"tailwindcss": "^1.6.2"
},
I followed the troubleshooting steps from the readme, but no help. Is there somewhere we can trace logs/issues?
Metadata
Metadata
Assignees
Labels
No labels