4
0
forked from crowetic/commerce
commerce/tailwind.config.js
Belen Curcio 54cf948f56 navbar
2020-09-29 09:23:23 -03:00

20 lines
352 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: [require("@tailwindcss/ui")],
};