mirror of
https://github.com/vercel/commerce.git
synced 2025-03-16 15:32:32 +00:00
20 lines
326 B
JavaScript
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: [],
|
|
};
|