4
0
forked from crowetic/commerce
commerce/tailwind.config.js

16 lines
280 B
JavaScript
Raw Normal View History

2020-09-21 15:42:32 -05:00
module.exports = {
future: {
removeDeprecatedGapUtilities: true,
},
purge: ['./components/**/*.{js,ts,jsx,tsx}', './pages/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
colors: {
'accent-1': '#333',
},
},
},
variants: {},
plugins: [],
};