mirror of
https://gitee.com/chu1204505056/vue-admin-beautiful.git
synced 2025-04-06 03:58:00 +08:00
🚀 feat: add imageCompression
This commit is contained in:
parent
ae2f8dfefc
commit
349e4c8902
@ -59,7 +59,7 @@
|
|||||||
|
|
||||||
```bash
|
```bash
|
||||||
git clone -b vue3.0-antdv https://github.com/chuzhixin/vue-admin-better.git
|
git clone -b vue3.0-antdv https://github.com/chuzhixin/vue-admin-better.git
|
||||||
npm i
|
npm i --registry=http://mirrors.cloud.tencent.com/npm/
|
||||||
npm run serve
|
npm run serve
|
||||||
```
|
```
|
||||||
|
|
||||||
@ -67,7 +67,7 @@ npm run serve
|
|||||||
|
|
||||||
```bash
|
```bash
|
||||||
git clone -b master https://github.com/chuzhixin/vue-admin-better.git
|
git clone -b master https://github.com/chuzhixin/vue-admin-better.git
|
||||||
npm i
|
npm i --registry=http://mirrors.cloud.tencent.com/npm/
|
||||||
npm run serve
|
npm run serve
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -80,7 +80,7 @@
|
|||||||
# 克隆项目
|
# 克隆项目
|
||||||
git clone -b vue3.0-antdv https://github.com/chuzhixin/vue-admin-better.git
|
git clone -b vue3.0-antdv https://github.com/chuzhixin/vue-admin-better.git
|
||||||
# 安装依赖
|
# 安装依赖
|
||||||
npm i
|
npm i --registry=http://mirrors.cloud.tencent.com/npm/
|
||||||
# 本地开发 启动项目
|
# 本地开发 启动项目
|
||||||
npm run serve
|
npm run serve
|
||||||
```
|
```
|
||||||
@ -91,7 +91,7 @@ npm run serve
|
|||||||
# 克隆项目
|
# 克隆项目
|
||||||
git clone https://github.com/chuzhixin/vue-admin-arco.git
|
git clone https://github.com/chuzhixin/vue-admin-arco.git
|
||||||
# 安装依赖
|
# 安装依赖
|
||||||
npm i
|
npm i --registry=http://mirrors.cloud.tencent.com/npm/
|
||||||
# 本地开发 启动项目
|
# 本地开发 启动项目
|
||||||
npm run dev
|
npm run dev
|
||||||
```
|
```
|
||||||
@ -102,7 +102,7 @@ npm run dev
|
|||||||
# 克隆项目
|
# 克隆项目
|
||||||
git clone -b master https://github.com/chuzhixin/vue-admin-better.git
|
git clone -b master https://github.com/chuzhixin/vue-admin-better.git
|
||||||
# 安装依赖
|
# 安装依赖
|
||||||
npm i
|
npm i --registry=http://mirrors.cloud.tencent.com/npm/
|
||||||
# 本地开发 启动项目
|
# 本地开发 启动项目
|
||||||
npm run serve
|
npm run serve
|
||||||
```
|
```
|
||||||
|
@ -11,16 +11,13 @@
|
|||||||
"serve": "vue-cli-service serve",
|
"serve": "vue-cli-service serve",
|
||||||
"build": "vue-cli-service build",
|
"build": "vue-cli-service build",
|
||||||
"build:report": "vue-cli-service build --report",
|
"build:report": "vue-cli-service build --report",
|
||||||
"globle": "npm install -g cnpm --registry=https://registry.npmmirror.com&&cnpm i rimraf npm-check-updates nrm -g&&rimraf node_modules&&cnpm i",
|
"globle": "npm install -g cnpm --registry=http://mirrors.cloud.tencent.com/npm/&&cnpm i rimraf npm-check-updates nrm -g&&rimraf node_modules&&cnpm i",
|
||||||
"lint": "vue-cli-service lint",
|
"lint": "vue-cli-service lint",
|
||||||
"lint:style": "stylelint-config-prettier-check",
|
"lint:style": "stylelint-config-prettier-check",
|
||||||
"inspect": "vue-cli-service inspect",
|
"inspect": "vue-cli-service inspect",
|
||||||
"template": "plop",
|
"clear": "rimraf node_modules&&npm install --registry=http://mirrors.cloud.tencent.com/npm/",
|
||||||
"clear": "rimraf node_modules&&npm install --registry=https://registry.npmmirror.com",
|
|
||||||
"image-webpack-loader": "cnpm i image-webpack-loader -D",
|
"image-webpack-loader": "cnpm i image-webpack-loader -D",
|
||||||
"use:npm": "nrm use npm",
|
"update": "ncu -u --reject sass-loader,sass,screenfull,eslint,chalk,vue-echarts,vue,vue-template-compiler,vue-router,vuex,@vue/cli-plugin-babel,@vue/cli-plugin-eslint,@vue/cli-service,eslint-plugin-vue --registry=http://mirrors.cloud.tencent.com/npm/&&npm i --registry=http://mirrors.cloud.tencent.com/npm/",
|
||||||
"use:taobao": "nrm use taobao",
|
|
||||||
"update": "ncu -u --reject sass-loader,sass,screenfull,eslint,chalk,vue-echarts,vue,vue-template-compiler,vue-router,vuex,@vue/cli-plugin-babel,@vue/cli-plugin-eslint,@vue/cli-service,eslint-plugin-vue --registry https://registry.npmmirror.com&&cnpm i",
|
|
||||||
"update:globle": "ncu -g --concurrency 10 --timeout 80000",
|
"update:globle": "ncu -g --concurrency 10 --timeout 80000",
|
||||||
"push": "start ./push.sh",
|
"push": "start ./push.sh",
|
||||||
"deploy": "start ./deploy.sh"
|
"deploy": "start ./deploy.sh"
|
||||||
|
@ -66,5 +66,7 @@ const setting = {
|
|||||||
templateFolder: 'project',
|
templateFolder: 'project',
|
||||||
//是否显示终端donation打印
|
//是否显示终端donation打印
|
||||||
donation: true,
|
donation: true,
|
||||||
|
//是否开启图片压缩
|
||||||
|
imageCompression: true,
|
||||||
}
|
}
|
||||||
module.exports = setting
|
module.exports = setting
|
||||||
|
@ -16,6 +16,7 @@ const {
|
|||||||
providePlugin,
|
providePlugin,
|
||||||
build7z,
|
build7z,
|
||||||
donation,
|
donation,
|
||||||
|
imageCompression,
|
||||||
} = require('./src/config')
|
} = require('./src/config')
|
||||||
const { webpackBarName, webpackBanner, donationConsole } = require('zx-layouts')
|
const { webpackBarName, webpackBanner, donationConsole } = require('zx-layouts')
|
||||||
|
|
||||||
@ -141,14 +142,15 @@ module.exports = {
|
|||||||
.plugin('banner')
|
.plugin('banner')
|
||||||
.use(Webpack.BannerPlugin, [`${webpackBanner}${time}`])
|
.use(Webpack.BannerPlugin, [`${webpackBanner}${time}`])
|
||||||
.end()
|
.end()
|
||||||
config.module
|
if (imageCompression)
|
||||||
.rule('images')
|
config.module
|
||||||
.use('image-webpack-loader')
|
.rule('images')
|
||||||
.loader('image-webpack-loader')
|
.use('image-webpack-loader')
|
||||||
.options({
|
.loader('image-webpack-loader')
|
||||||
bypassOnDebug: true,
|
.options({
|
||||||
})
|
bypassOnDebug: true,
|
||||||
.end()
|
})
|
||||||
|
.end()
|
||||||
})
|
})
|
||||||
|
|
||||||
if (build7z) {
|
if (build7z) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user