Browse Source

refactor<mock>: compatibility notes (#2555)

luocong2016 2 years ago
parent
commit
a222404220
1 changed files with 16 additions and 0 deletions
  1. 16 0
      mock/_createProductionServer.ts

+ 16 - 0
mock/_createProductionServer.ts

@@ -1,5 +1,21 @@
 import { createProdMockServer } from 'vite-plugin-mock/es/createProdMockServer';
 
+// 问题描述
+// 1. `import.meta.globEager` 已被弃用, 需要升级vite版本,有兼容问题
+// 2. `vite-plugin-mock` 插件问题 https://github.com/vbenjs/vite-plugin-mock/issues/56
+
+// const modules: Record<string, any> = import.meta.glob("./**/*.ts", {
+//   import: "default",
+//   eager: true,
+// });
+
+// const mockModules = Object.keys(modules).reduce((pre, key) => {
+//   if (!key.includes("/_")) {
+//     pre.push(...modules[key]);
+//   }
+//   return pre;
+// }, [] as any[]);
+
 const modules = import.meta.globEager('./**/*.ts');
 
 const mockModules: any[] = [];