7 lines
169 B
JavaScript
7 lines
169 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ['./src/**/*.{html,ts}'], // keep this line
|
|
theme: { extend: {} },
|
|
plugins: [],
|
|
};
|