ppms-uni-vue3-huertian/uno.config.ts

40 lines
972 B
TypeScript

import presetWeapp from "unocss-preset-weapp";
import {
extractorAttributify,
transformerClass,
} from "unocss-preset-weapp/transformer";
import transformerDirectives from "@unocss/transformer-directives";
const { presetWeappAttributify, transformerAttributify } =
extractorAttributify();
export default {
presets: [
// https://github.com/MellowCo/unocss-preset-weapp
presetWeapp({
whRpx: false,
}),
// attributify autocomplete
presetWeappAttributify(),
],
shortcuts: [
{
"border-base": "border border-gray-500_10",
center: "flex justify-center items-center",
},
],
transformers: [
transformerDirectives({
enforce: "pre",
}),
// https://github.com/MellowCo/unocss-preset-weapp/tree/main/src/transformer/transformerAttributify
transformerAttributify(),
// https://github.com/MellowCo/unocss-preset-weapp/tree/main/src/transformer/transformerClass
transformerClass(),
],
};