mirror of
https://github.com/rustfs/console.git
synced 2026-09-01 15:17:45 +08:00
18 lines
338 B
TypeScript
18 lines
338 B
TypeScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: [
|
|
"./components/**/*.{js,vue,ts}",
|
|
"./layouts/**/*.vue",
|
|
"./pages/**/*.vue",
|
|
"./plugins/**/*.{js,ts}",
|
|
"./nuxt.config.{js,ts}",
|
|
"./app.vue",
|
|
],
|
|
darkMode: 'class', // or 'media' or 'class'
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [],
|
|
}
|
|
|