wasp/web/tailwind.config.js
2023-11-16 17:15:18 +01:00

17 lines
277 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: [],
}