Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
jinli gu
RuoYi Vue
Commits
a028b566
"eladmin-system/src/vscode:/vscode.git/clone" did not exist on "22c3864dee8828b5e0f14655239b32e0a20d787b"
Commit
a028b566
authored
Dec 20, 2021
by
RuoYi
Browse files
集成compression-webpack-plugin插件实现打包Gzip压缩
parent
ca2405c1
Changes
2
Hide whitespace changes
Inline
Side-by-side
ruoyi-ui/package.json
View file @
a028b566
...
@@ -67,6 +67,7 @@
...
@@ -67,6 +67,7 @@
"babel-eslint"
:
"10.1.0"
,
"babel-eslint"
:
"10.1.0"
,
"babel-plugin-dynamic-import-node"
:
"2.3.3"
,
"babel-plugin-dynamic-import-node"
:
"2.3.3"
,
"chalk"
:
"4.1.0"
,
"chalk"
:
"4.1.0"
,
"compression-webpack-plugin"
:
"5.0.2"
,
"connect"
:
"3.6.6"
,
"connect"
:
"3.6.6"
,
"eslint"
:
"7.15.0"
,
"eslint"
:
"7.15.0"
,
"eslint-plugin-vue"
:
"7.2.0"
,
"eslint-plugin-vue"
:
"7.2.0"
,
...
...
ruoyi-ui/vue.config.js
View file @
a028b566
...
@@ -5,6 +5,8 @@ function resolve(dir) {
...
@@ -5,6 +5,8 @@ function resolve(dir) {
return
path
.
join
(
__dirname
,
dir
)
return
path
.
join
(
__dirname
,
dir
)
}
}
const
CompressionPlugin
=
require
(
'
compression-webpack-plugin
'
)
const
name
=
process
.
env
.
VUE_APP_TITLE
||
'
若依管理系统
'
// 网页标题
const
name
=
process
.
env
.
VUE_APP_TITLE
||
'
若依管理系统
'
// 网页标题
const
port
=
process
.
env
.
port
||
process
.
env
.
npm_config_port
||
80
// 端口
const
port
=
process
.
env
.
port
||
process
.
env
.
npm_config_port
||
80
// 端口
...
@@ -55,7 +57,16 @@ module.exports = {
...
@@ -55,7 +57,16 @@ module.exports = {
alias
:
{
alias
:
{
'
@
'
:
resolve
(
'
src
'
)
'
@
'
:
resolve
(
'
src
'
)
}
}
}
},
plugins
:
[
new
CompressionPlugin
({
test
:
/
\.(
js|css|html
)?
$/i
,
// 压缩文件格式
filename
:
'
[path].gz[query]
'
,
// 压缩后的文件名
algorithm
:
'
gzip
'
,
// 使用gzip压缩
threshold
:
10240
,
// 对超过10K的数据压缩
minRatio
:
0.8
// 压缩率小于1才会压缩
})
],
},
},
chainWebpack
(
config
)
{
chainWebpack
(
config
)
{
config
.
plugins
.
delete
(
'
preload
'
)
// TODO: need test
config
.
plugins
.
delete
(
'
preload
'
)
// TODO: need test
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment