9 lines
169 B
JavaScript
9 lines
169 B
JavaScript
|
/** @type {import('tailwindcss').Config} */
|
||
|
module.exports = {
|
||
|
prefix: 'tw-',
|
||
|
content: ["./src/**/*.{html,js,tsx}"],
|
||
|
theme: {
|
||
|
extend: {},
|
||
|
},
|
||
|
plugins: [],
|
||
|
}
|