1
0
mirror of https://gitee.com/h_mo/uniapp-vue3-vite-ts-template synced 2025-04-06 03:58:03 +08:00
2024-08-19 17:52:52 +08:00

16 lines
330 B
TypeScript

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