mirror of
https://gitee.com/h_mo/uniapp-vue3-vite-ts-template
synced 2025-04-05 06:12:44 +08:00
- 重构Iconify组件,移除点击事件处理和冗余的数字检查函数。- 添加组件文档注释,说明如何使用和可用图标库。 - 更改模板中使用的图标类名前缀以适应新组件。 - 在尾风CSS配置中引入新图标集合,并调整插件顺序。- 更新示例页面上的图标,统一使用'i-mdi-account-box'进行测试。 - 在package.json中调整mp-weixin的开发命令,移除与devtools相关的部分。- 从'tailwind.config.js'中移除预制和容器核心插件的MP适配代码。BREAKING CHANGE: 图标类名前缀已更改,这可能会影响使用自定义样式或依赖特定类名的图标组件的现有代码。请确保更新图标引用以反映这些更改。
19 lines
530 B
JavaScript
19 lines
530 B
JavaScript
import { getIconCollections, iconsPlugin } from '@egoist/tailwindcss-icons';
|
|
import { isMp } from './build/platform';
|
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ['./public/index.html', './src/**/*.{html,js,ts,jsx,tsx,vue}'],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
corePlugins: {
|
|
// 小程序去使用 h5 的 preflight 和响应式 container 没有意义
|
|
preflight: !isMp,
|
|
container: !isMp,
|
|
},
|
|
plugins: [iconsPlugin({
|
|
collections: getIconCollections(['mdi', 'svg-spinners']),
|
|
})],
|
|
};
|