加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
tailwind.config.js 1.03 KB
一键复制 编辑 原始数据 按行查看 历史
江夏 提交于 2023-01-29 15:51 . style: 代码风格修复
/** @type {import('tailwindcss').Config} */
// eslint-disable-next-line
const colors = require('tailwindcss/colors')
module.exports = {
// darkMode: "class", // 启动暗黑模式 class支持手动切换 media跟随操作系统
content: [
'./components/**/*.{vue,js,jsx,tsx}',
'./layouts/**/*.vue',
'./pages/**/*.vue',
'./plugins/**/*.{js,ts}',
'./nuxt.config.{js,ts}',
'./app.vue',
'node_modules/tailvue/dist/tailvue.es.js'// tailvue 这里加上这个才不会所有css都被剔除
],
theme: {
extend: {},
theme: {
colors: {
transparent: 'transparent',
current: 'currentColor',
black: colors.black,
white: colors.white,
gray: colors.neutral,
indigo: colors.indigo,
red: colors.rose,
yellow: colors.amber,
},
},
},
/* daisyui */
plugins: [require('daisyui')],
daisyui: {
styled: true,
themes: true,
base: true,
utils: true,
logs: true,
rtl: false,
prefix: '',
darkTheme: 'dark',
},
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化