mirror of
https://github.com/C4illin/ConvertX.git
synced 2025-11-17 20:31:41 +00:00
10 lines
256 B
JavaScript
10 lines
256 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
import scrollbar from 'tailwind-scrollbar';
|
|
// eslint-disable-next-line no-undef
|
|
module.exports = {
|
|
content: ["./src/**/*.{html,js,tsx,jsx,cjs,mjs}"],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [scrollbar()],
|
|
} |