Commit 9c5f11a54bb7a410c258a9185557aadca3106e6d
1 parent
6c08dae9
fix: remove warning in building action
移除build过程中的警告
Showing
2 changed files
with
5 additions
and
2 deletions
CHANGELOG.zh_CN.md
1 | 1 | ### ✨ Features |
2 | 2 | |
3 | -- **其它** `.env`文件中的`VITE_PROXY`配置支持单引号 | |
3 | +- **其它** | |
4 | + - `.env`文件中的`VITE_PROXY`配置支持单引号 | |
5 | + - 移除 build 过程中的警告 | |
4 | 6 | |
5 | 7 | ### 🐛 Bug Fixes |
6 | 8 | |
... | ... | @@ -13,6 +15,7 @@ |
13 | 15 | - 修复点击遮罩、按下`Esc`键都不能关闭`Modal`的问题 |
14 | 16 | - 修复点击关闭按钮、最大化按钮旁边的空白区域也会导致`Modal`关闭的问题 |
15 | 17 | - **BasicTree** 修复节点插槽不起作用的问题 |
18 | +- **CodeEditor** 修复可能会造成的`Build`失败的问题 | |
16 | 19 | - **其它** 修复多标签在某些情况下关闭页签不会跳转路由的问题 |
17 | 20 | |
18 | 21 | ## 2.7.2(2021-09-14) | ... | ... |
src/views/demo/setup/index.vue
... | ... | @@ -8,7 +8,7 @@ |
8 | 8 | import { PageWrapper } from '/@/components/Page'; |
9 | 9 | import { useDesign } from '/@/hooks/web/useDesign'; |
10 | 10 | import intro from 'intro.js'; |
11 | - import 'intro.js/introjs.css'; | |
11 | + import 'intro.js/minified/introjs.min.css'; | |
12 | 12 | |
13 | 13 | export default defineComponent({ |
14 | 14 | components: { PageWrapper }, | ... | ... |