加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
tailwind.config.js 691 Bytes
一键复制 编辑 原始数据 按行查看 历史
h_mo 提交于 2024-08-30 17:31 . chore(tailwind): update tailwind.config.js
import { getIconCollections, iconsPlugin } from '@egoist/tailwindcss-icons';
import { isMp } from './build/platform';
const spacing = {
0: '0px',
};
let i = 0;
while (i <= 750) {
spacing[`${i}px`] = `${i}px`;
spacing[`${i}rpx`] = `${i}rpx`;
i++;
}
/** @type {import('tailwindcss').Config} */
export default {
content: ['./public/index.html', './src/**/*.{html,js,ts,jsx,tsx,vue}'],
theme: {
extend: {
spacing,
},
},
corePlugins: {
// 小程序去使用 h5 的 preflight 和响应式 container 没有意义
preflight: !isMp,
container: !isMp,
},
plugins: [iconsPlugin({
collections: getIconCollections(['mdi', 'svg-spinners']),
})],
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化