瀏覽代碼

chore: variables typo (#4658)


* fix: variables

---------

Co-authored-by: afe1 <yunfei.zhu@nwowtec.com>
afe1 5 月之前
父節點
當前提交
719c9a8f2d
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      internal/vite-config/src/config/index.ts

+ 1 - 1
internal/vite-config/src/config/index.ts

@@ -16,7 +16,7 @@ function defineConfig(
   let projectType = type;
 
   // 根据包是否存在 index.html,自动判断类型
-  if (type === 'auto') {
+  if (projectType === 'auto') {
     const htmlPath = join(process.cwd(), 'index.html');
     projectType = existsSync(htmlPath) ? 'application' : 'library';
   }