rsnext/examples/with-tailwindcss-emotion/tailwind.config.js
Santi Dalmasso 0af3b52640
Update Tailwind CSS example with emotion to use JIT (#23843)
## Documentation / Examples

- [X] Make sure the linting passes
2021-04-08 23:41:19 +00:00

17 lines
246 B
JavaScript

const colors = require('tailwindcss/colors')
module.exports = {
mode: 'jit',
darkMode: 'class',
theme: {
extend: {
colors,
},
},
variants: {},
plugins: [],
// xwind options
xwind: {
mode: 'objectstyles',
},
}