11 lines
169 B
JavaScript
11 lines
169 B
JavaScript
|
/** @type {import('tailwindcss').Config} */
|
||
|
module.exports = {
|
||
|
content: ["./**/*.{html,js}"],
|
||
|
theme: {
|
||
|
extend: {
|
||
|
colors: {},
|
||
|
},
|
||
|
},
|
||
|
plugins: [],
|
||
|
};
|