2022-11-15 17:03:19 +00:00
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
|
|
module.exports = {
|
|
|
|
content: ["./src/**/*.{js,ts,jsx,tsx}"],
|
|
|
|
theme: {
|
|
|
|
extend: {},
|
|
|
|
},
|
2022-11-15 22:27:42 +00:00
|
|
|
plugins: [
|
|
|
|
require('tailwind-scrollbar')
|
|
|
|
],
|
2022-11-15 17:03:19 +00:00
|
|
|
};
|