wasp/web/tailwind.config.js
2022-11-26 19:01:40 +01:00

17 lines
276 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
important: true,
corePlugins: {
preflight: false,
},
theme: {
extend: {
fontFamily: {
sans: ['Inter']
}
},
},
plugins: [],
};