mirror of
https://github.com/wasp-lang/wasp.git
synced 2024-12-03 13:54:12 +03:00
14 lines
209 B
JavaScript
14 lines
209 B
JavaScript
|
/** @type {import('tailwindcss').Config} */
|
||
|
module.exports = {
|
||
|
content: [
|
||
|
"./src/**/*.{js,jsx,ts,tsx}",
|
||
|
],
|
||
|
corePlugins: {
|
||
|
//preflight: false
|
||
|
},
|
||
|
theme: {
|
||
|
extend: {},
|
||
|
},
|
||
|
plugins: [],
|
||
|
}
|