wasp/web/tailwind.config.js

17 lines
277 B
JavaScript
Raw Normal View History

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