Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
B
basic-vue-admin
概览
概览
详情
活动
周期分析
版本库
存储库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
问题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程表
图表
维基
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
Basic
basic-vue-admin
Commits
4cca0071
提交
4cca0071
authored
12月 04, 2020
作者:
vben
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
test(code-split): code split optimization
上级
81e90409
显示空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
39 行增加
和
5 行删除
+39
-5
CHANGELOG.zh_CN.md
CHANGELOG.zh_CN.md
+1
-0
optimizer.ts
build/vite/optimizer.ts
+20
-0
vite.config.ts
vite.config.ts
+18
-5
没有找到文件。
CHANGELOG.zh_CN.md
浏览文件 @
4cca0071
...
...
@@ -10,6 +10,7 @@
-
还原 antdv 默认 loading,重构
`Loading`
组件,增加
`useLoading`
和
`v-loading`
指令。并增加示例
-
i18n 支持 vscode
`i18n-ally`
插件
-
新增多级路由缓存示例
-
打包代码拆分(试验)
### ⚡ Performance Improvements
...
...
build/vite/optimizer.ts
0 → 100644
浏览文件 @
4cca0071
import
type
{
GetManualChunk
,
GetManualChunkApi
}
from
'rollup'
;
//
const
vendorLibs
:
{
match
:
string
[];
output
:
string
}[]
=
[
{
match
:
[
'xlsx'
],
output
:
'xlsx'
,
},
];
// @ts-ignore
export
const
configManualChunk
:
GetManualChunk
=
(
id
:
string
,
api
:
GetManualChunkApi
)
=>
{
if
(
/
[\\/]
node_modules
[\\/]
/
.
test
(
id
))
{
const
matchItem
=
vendorLibs
.
find
((
item
)
=>
{
const
reg
=
new
RegExp
(
`[\\/]node_modules[\\/]_?(
${
item
.
match
.
join
(
'|'
)}
)(.*)`
,
'ig'
);
return
reg
.
test
(
id
);
});
return
matchItem
?
matchItem
.
output
:
null
;
}
};
vite.config.ts
浏览文件 @
4cca0071
...
...
@@ -3,6 +3,7 @@ import { resolve } from 'path';
import
{
modifyVars
}
from
'./build/config/lessModifyVars'
;
import
{
createProxy
}
from
'./build/vite/proxy'
;
import
{
configManualChunk
}
from
'./build/vite/optimizer'
;
import
globbyTransform
from
'./build/vite/plugin/transform/globby'
;
import
dynamicImportTransform
from
'./build/vite/plugin/transform/dynamic-import'
;
...
...
@@ -53,9 +54,11 @@ const viteConfig: UserConfig = {
// terser options
terserOptions
:
{
compress
:
{
keep_infinity
:
true
,
drop_console
:
VITE_DROP_CONSOLE
,
},
},
define
:
{
__VERSION__
:
pkg
.
version
,
// setting vue-i18-next
...
...
@@ -64,12 +67,14 @@ const viteConfig: UserConfig = {
__VUE_I18N_FULL_INSTALL__
:
false
,
__INTLIFY_PROD_DEVTOOLS__
:
false
,
},
cssPreprocessOptions
:
{
less
:
{
modifyVars
:
modifyVars
,
javascriptEnabled
:
true
,
},
},
// The package will be recompiled using rollup, and the new package compiled into the esm module specification will be put into node_modules/.vite_opt_cache
optimizeDeps
:
{
include
:
[
...
...
@@ -80,11 +85,6 @@ const viteConfig: UserConfig = {
],
},
proxy
:
createProxy
(
VITE_PROXY
),
plugins
:
createVitePlugins
(
viteEnv
),
rollupInputOptions
:
{
plugins
:
createRollupPlugin
(),
},
transforms
:
[
globbyTransform
({
resolvers
:
resolvers
,
...
...
@@ -94,6 +94,19 @@ const viteConfig: UserConfig = {
}),
dynamicImportTransform
(
VITE_DYNAMIC_IMPORT
),
],
proxy
:
createProxy
(
VITE_PROXY
),
plugins
:
createVitePlugins
(
viteEnv
),
rollupInputOptions
:
{
plugins
:
createRollupPlugin
(),
},
rollupOutputOptions
:
{
compact
:
true
,
manualChunks
:
configManualChunk
,
},
};
export
default
viteConfig
;
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论