h_mo 642ee9e637 feat: add unocss configuration for styling
- 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.
2025-04-02 23:34:35 +08:00

16 lines
320 B
TypeScript

import process from 'node:process';
const currentPlatform = process.env.UNI_PLATFORM;
const isH5 = currentPlatform === 'h5';
const isApp = currentPlatform === 'app';
const isMp = !isH5 && !isApp;
const isWeixinMp = currentPlatform === 'mp-weixin';
export {
currentPlatform,
isApp,
isH5,
isMp,
isWeixinMp,
};