mirror of
https://github.com/codexu/note-gen.git
synced 2026-06-12 16:33:01 +08:00
* feat: 升级工具 * feat: 适配 vditor 样式 * feat: 使用 Shine Border 优化对话框 * feat: 对话 Markdown 样式调整 * fix: 修复移动端圆角问题 * feat: 增加自定义主题颜色配置方案 * feat: 调整细节配色 * feat: 预设主题方案切换时会主动切换light、dark 主题色
9 lines
146 B
JavaScript
9 lines
146 B
JavaScript
/** @type {import('postcss-load-config').Config} */
|
|
const config = {
|
|
plugins: {
|
|
"@tailwindcss/postcss": {},
|
|
},
|
|
};
|
|
|
|
export default config;
|