mirror of
https://github.com/tailwindlabs/tailwindcss.git
synced 2025-12-08 21:36:08 +00:00
* Update deps * Fix usage of postcss config file in standalone CLI The config file created with `--postcss` would fail because we didn’t stub require to load `tailwindcss` or `autoprefixer` when we should. * Update tests * WIP
8 lines
113 B
JavaScript
8 lines
113 B
JavaScript
module.exports = {
|
|
plugins: {
|
|
tailwindcss: {},
|
|
autoprefixer: {},
|
|
'postcss-will-change': {},
|
|
},
|
|
}
|