2023-03-18 16:41:15 +08:00
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
|
|
module.exports = {
|
2023-03-19 11:19:20 +08:00
|
|
|
mode: 'jit',
|
|
|
|
content: ['./src/**/*.{js,jsx,ts,tsx}'],
|
2023-03-18 16:41:15 +08:00
|
|
|
theme: {
|
|
|
|
extend: {},
|
|
|
|
},
|
|
|
|
plugins: [],
|
2023-03-19 11:19:20 +08:00
|
|
|
};
|