CloudSphere/tailwind.config.js

19 lines
309 B
JavaScript
Raw Normal View History

2025-09-11 13:36:35 +08:00
/** @type {import('tailwindcss').Config} */
export default {
content: [
'./app.vue',
'./components/**/*.{vue,js,ts}',
'./layouts/**/*.{vue,js,ts}',
'./pages/**/*.{vue,js,ts}',
'./plugins/**/*.{js,ts}',
'./nuxt.config.{js,ts}'
],
theme: {
extend: {},
},
plugins: [],
}