10 lines
171 B
JavaScript
10 lines
171 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ["./resources/**/*.{edge,js,ts,vue,jsx,tsx}"],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [],
|
|
}
|
|
|