mirror of
https://github.com/wasp-lang/wasp.git
synced 2024-11-23 19:29:17 +03:00
17 lines
276 B
JavaScript
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: [],
|
||
|
};
|