Files
coze-studio/frontend/packages/workflow/playground/tailwind.config.js
fanlv 890153324f feat: manually mirror opencoze's code from bytedance
Change-Id: I09a73aadda978ad9511264a756b2ce51f5761adf
2025-07-20 17:36:12 +08:00

12 lines
359 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: 'class',
presets: [require('@coze-arch/tailwind-config')],
important: '',
content: ['./src/**/*.{ts,tsx}'],
corePlugins: {
preflight: false, // 关闭@tailwind base默认样式避免对现有样式影响
},
plugins: [require('@coze-arch/tailwind-config/coze')],
};