Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
S
sts网站
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
liyang
sts网站
Commits
a028b566
Commit
a028b566
authored
Dec 20, 2021
by
RuoYi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
集成compression-webpack-plugin插件实现打包Gzip压缩
parent
ca2405c1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
1 deletion
+13
-1
package.json
ruoyi-ui/package.json
+1
-0
vue.config.js
ruoyi-ui/vue.config.js
+12
-1
No files found.
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
Markdown
is supported
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