forked from crowetic/commerce
16 lines
280 B
JavaScript
16 lines
280 B
JavaScript
|
module.exports = {
|
||
|
future: {
|
||
|
removeDeprecatedGapUtilities: true,
|
||
|
},
|
||
|
purge: ['./components/**/*.{js,ts,jsx,tsx}', './pages/**/*.{js,ts,jsx,tsx}'],
|
||
|
theme: {
|
||
|
extend: {
|
||
|
colors: {
|
||
|
'accent-1': '#333',
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
variants: {},
|
||
|
plugins: [],
|
||
|
};
|