NunoSempere
b7a186f8ac
Solution per <https://tailwindcss.com/docs/using-with-preprocessors#nesting> was enabled, but the necessary dev dependencies not enabled, which caused problems
10 lines
179 B
JavaScript
10 lines
179 B
JavaScript
module.exports = {
|
|
plugins: {
|
|
"postcss-import": {},
|
|
"tailwindcss/nesting": {},
|
|
tailwindcss: {},
|
|
autoprefixer: {},
|
|
cssnano: {}
|
|
}
|
|
};
|