Browse Source

fix: remove warning in building action

移除build过程中的警告
无木 3 năm trước cách đây
mục cha
commit
9c5f11a54b
2 tập tin đã thay đổi với 5 bổ sung2 xóa
  1. 4 1
      CHANGELOG.zh_CN.md
  2. 1 1
      src/views/demo/setup/index.vue

+ 4 - 1
CHANGELOG.zh_CN.md

@@ -1,6 +1,8 @@
 ### ✨ Features
 
-- **其它** `.env`文件中的`VITE_PROXY`配置支持单引号
+- **其它**
+  - `.env`文件中的`VITE_PROXY`配置支持单引号
+  - 移除 build 过程中的警告
 
 ### 🐛 Bug Fixes
 
@@ -13,6 +15,7 @@
   - 修复点击遮罩、按下`Esc`键都不能关闭`Modal`的问题
   - 修复点击关闭按钮、最大化按钮旁边的空白区域也会导致`Modal`关闭的问题
 - **BasicTree** 修复节点插槽不起作用的问题
+- **CodeEditor** 修复可能会造成的`Build`失败的问题
 - **其它** 修复多标签在某些情况下关闭页签不会跳转路由的问题
 
 ## 2.7.2(2021-09-14)

+ 1 - 1
src/views/demo/setup/index.vue

@@ -8,7 +8,7 @@
   import { PageWrapper } from '/@/components/Page';
   import { useDesign } from '/@/hooks/web/useDesign';
   import intro from 'intro.js';
-  import 'intro.js/introjs.css';
+  import 'intro.js/minified/introjs.min.css';
 
   export default defineComponent({
     components: { PageWrapper },