mirror of
https://0xacab.org/jvoisin/mat2-web.git
synced 2025-02-23 16:49:59 -05:00
19 lines
396 B
JavaScript
19 lines
396 B
JavaScript
const defaultTheme = require('tailwindcss/defaultTheme')
|
|
|
|
module.exports = {
|
|
future: {
|
|
// removeDeprecatedGapUtilities: true,
|
|
// purgeLayersByDefault: true,
|
|
},
|
|
purge: [],
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
sans: ['Inter var', ...defaultTheme.fontFamily.sans],
|
|
},
|
|
},
|
|
},
|
|
variants: {},
|
|
plugins: [],
|
|
}
|