wasp/web/tailwind.config.js

17 lines
276 B
JavaScript
Raw Normal View History

2022-10-24 11:43:21 +03:00
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
important: true,
corePlugins: {
preflight: false,
},
theme: {
extend: {
fontFamily: {
sans: ['Inter']
}
},
},
plugins: [],
};