2023-05-15 08:51:32 +08:00
|
|
|
/** @type {import('tailwindcss').Config} */
|
2024-09-26 15:06:36 +08:00
|
|
|
import commonConfig from './tailwind.common.config';
|
2023-05-15 08:51:32 +08:00
|
|
|
module.exports = {
|
|
|
|
content: [
|
|
|
|
'./app/**/*.{js,ts,jsx,tsx}',
|
|
|
|
'./components/**/*.{js,ts,jsx,tsx}',
|
2024-07-23 17:11:02 +08:00
|
|
|
'./context/**/*.{js,ts,jsx,tsx}',
|
2023-05-15 08:51:32 +08:00
|
|
|
],
|
2024-09-26 15:06:36 +08:00
|
|
|
...commonConfig,
|
2023-05-15 08:51:32 +08:00
|
|
|
}
|