mirror of
https://github.com/chatopera/cosin.git
synced 2025-08-01 16:38:02 +08:00
13 lines
285 B
JavaScript
13 lines
285 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
// eslint-disable-next-line no-undef
|
|
import base from '@cskefu/setup-tailwind'
|
|
|
|
export default {
|
|
...base,
|
|
content: [
|
|
'./index.html',
|
|
'./src/**/*.{vue,js,ts,jsx,tsx}',
|
|
'./node_modules/@cskefu/**/*.{vue,js,ts,jsx,tsx}',
|
|
],
|
|
}
|