wangzhibo
6 天以前 7bd866831780abcf5a59c4cbb7d1be456eea7c99
packages/vite-plugin/src/config.ts
@@ -1,10 +1,9 @@
import type { Type } from "../types";
import type { Config } from "../types";
export const config = {
   type: "admin" as Type,
export const config: Config.Data = {
   type: "admin",
   reqUrl: "",
   demo: false,
   nameTag: true,
   eps: {
      enable: true,
      api: "",
@@ -12,7 +11,7 @@
      mapping: [
         {
            // 自定义匹配
            custom: ({ propertyName, type }: { propertyName: string; type: string }) => {
            custom: ({ propertyName, type }) => {
               // 如果没有,返回null或者不返回,则继续遍历其他匹配规则
               return null;
            },
@@ -37,25 +36,6 @@
            type: "BigInt",
            test: ["bigint"],
         },
         {
            type: "any",
            test: ["json"],
         },
      ],
   },
   svg: {
      skipNames: ["base"],
   },
   tailwind: {
      enable: true,
      remUnit: 14,
      remPrecision: 6,
      rpxRatio: 2,
      darkTextClass: "dark:text-surface-50",
   },
   uniapp: {
      isPlugin: false,
   },
   clean: false,
   utsPlatform: "web",
};