mirror of
https://gitee.com/h_mo/uniapp-vue3-vite-ts-template
synced 2025-04-04 05:42:44 +08:00
- Introduced a new unocss.config.ts file to define styling configurations. - Configured presets for Weapp and Icons, including custom transform rules. - Set up theme colors and font sizes for consistent styling across the application. - Added transformers for attributify and class handling.
70 lines
1.5 KiB
TypeScript
70 lines
1.5 KiB
TypeScript
import { defineConfig, presetIcons } from 'unocss';
|
|
import presetWeapp from 'unocss-preset-weapp';
|
|
import { transformerAttributify, transformerClass } from 'unocss-preset-weapp/transformer';
|
|
import { isWeixinMp } from './build/platform';
|
|
|
|
const prefix = '';
|
|
|
|
const transformRules = {
|
|
'.': '-d2e-',
|
|
'/': '-s2f-',
|
|
':': '-c3a-',
|
|
'%': '-p25-',
|
|
'!': '-e21-',
|
|
'#': '-w23-',
|
|
'(': '-b28-',
|
|
')': '-b29-',
|
|
'[': '-f4b-',
|
|
']': '-f5d-',
|
|
'$': '-r24-',
|
|
',': '-r2c-',
|
|
};
|
|
|
|
export default defineConfig({
|
|
presets: [
|
|
// https://github.com/MellowCo/unocss-preset-weapp
|
|
presetWeapp({
|
|
prefix,
|
|
whRpx: false,
|
|
transform: isWeixinMp as boolean,
|
|
platform: 'uniapp',
|
|
transformRules,
|
|
}) as any,
|
|
presetIcons({
|
|
scale: 1.2,
|
|
warn: true,
|
|
}),
|
|
],
|
|
shortcuts: [
|
|
{
|
|
center: 'flex justify-center items-center',
|
|
},
|
|
],
|
|
theme: {
|
|
colors: {
|
|
primary: '#007AFF',
|
|
secondary: '#4CD964',
|
|
danger: '#FF3B30',
|
|
warning: '#FF9500',
|
|
info: '#5AC8FA',
|
|
light: '#F0F0F0',
|
|
dark: '#1A1A1A',
|
|
},
|
|
fontSize: {
|
|
mini: ['20rpx', '26rpx'],
|
|
},
|
|
},
|
|
transformers: [
|
|
// options https://github.com/MellowCo/unocss-preset-weapp/tree/main/src/transformer/transformerAttributify
|
|
transformerAttributify({
|
|
classPrefix: prefix,
|
|
transformRules,
|
|
nonValuedAttribute: true,
|
|
}) as any,
|
|
// options https://github.com/MellowCo/unocss-preset-weapp/tree/main/src/transformer/transformerClass
|
|
transformerClass({
|
|
transformRules,
|
|
}),
|
|
],
|
|
});
|