4
0
forked from crowetic/commerce
commerce/tailwind.config.js
2020-09-23 15:19:36 -03:00

20 lines
326 B
JavaScript

module.exports = {
future: {
removeDeprecatedGapUtilities: true,
},
purge: [
"./components/**/*.{js,ts,jsx,tsx}",
"./pages/**/*.{js,ts,jsx,tsx}",
"./ui/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
"accent-1": "#333",
},
},
},
variants: {},
plugins: [],
};