rsnext/examples/with-tailwindcss-emotion/tailwind.config.js
Arthur Petrie 453adc6864
[Examples] update with-tailwindcss-emotion to tailwind 2.0 (#19476)
Hello, this PR updates the with-tailwindcss-emotion example to be compatible with tailwindcss 2.0

Here is a summary of all the changes:
- update `.babelrc` config
- update `README.md`
- delete `@emotion/css component` (makes the example simpler)
- update `@emotion/react` component to use xwind
- update `@emotion/styled` component to use xwind
- Add global styles to `_app.js`
- remove `_document.js` page
- remove `base.css` global style files (global styles are added in _app.js)
- update `tailwind.config.js`
- update `package.json` dependencies + remove unnecessary `build:base-css` script
2020-11-25 18:17:12 +00:00

16 lines
231 B
JavaScript

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