mirror of
https://github.com/Litlyx/litlyx
synced 2025-12-10 15:58:38 +01:00
16 lines
333 B
TypeScript
16 lines
333 B
TypeScript
import type { Config } from 'tailwindcss'
|
|
|
|
const config: Config = {
|
|
content: [
|
|
'./components/**/*.{vue,js,ts}',
|
|
'./layouts/**/*.vue',
|
|
'./pages/**/*.vue',
|
|
'./app.vue',
|
|
'./plugins/**/*.{js,ts}',
|
|
'./nuxt.config.{js,ts}',
|
|
],
|
|
theme: {},
|
|
plugins: [],
|
|
}
|
|
|
|
export default config |