JCC-RIP/vue.config.js

176 lines
5.1 KiB
JavaScript
Raw Permalink Normal View History

2021-01-21 17:43:14 +08:00
'use strict'
const path = require('path')
const defaultSettings = require('./src/settings.js')
2020-11-10 15:36:19 +08:00
2022-07-15 16:38:01 +08:00
const UglifyJsPlugin = require('uglifyjs-webpack-plugin')
const FileManagerPlugin = require('filemanager-webpack-plugin')
2020-11-10 15:36:19 +08:00
function resolve(dir) {
2021-01-21 17:43:14 +08:00
return path.join(__dirname, dir)
2020-11-10 15:36:19 +08:00
}
2021-03-18 11:31:48 +08:00
const name = defaultSettings.title || 'JCCE' // page title
2021-01-21 17:43:14 +08:00
// If your port is set to 80,
// use administrator privileges to execute the command line.
// For example, Mac: sudo npm run
// You can change the port by the following method:
// port = 9527 npm run dev OR npm run dev --port = 9527
const port = process.env.port || process.env.npm_config_port || 9527 // dev port
// All configuration item explanations can be find in https://cli.vuejs.org/config/
2020-11-10 15:36:19 +08:00
module.exports = {
2021-01-21 17:43:14 +08:00
/**
* You will need to set publicPath if you plan to deploy your site under a sub path,
* for example GitHub Pages. If you plan to deploy your site to https://foo.github.io/bar/,
* then publicPath should be set to "/bar/".
* In most cases please use '/' !!!
* Detail: https://cli.vuejs.org/config/#publicpath
*/
2024-04-16 15:27:58 +08:00
publicPath: '/',
2021-01-21 17:43:14 +08:00
outputDir: 'dist',
assetsDir: 'static',
lintOnSave: process.env.NODE_ENV === 'development',
2020-11-10 15:36:19 +08:00
productionSourceMap: false,
devServer: {
2024-07-24 10:04:17 +08:00
host: 'localhost',
2021-01-21 17:43:14 +08:00
port: port,
2020-11-10 15:36:19 +08:00
open: true,
2021-01-21 17:43:14 +08:00
overlay: {
warnings: false,
errors: true
2020-11-10 15:36:19 +08:00
},
2021-01-23 18:02:16 +08:00
proxy: {
2024-04-16 14:52:16 +08:00
// '^/apis': {
// ws: false,
// target: 'https://dev.jointcloud.net/',
// changeOrigin: true,
// secure: false
// },
// '^/jcc-': {
// ws: false,
// target: 'https://dev.jointcloud.net/',
// // target: 'https://jointcloud.net/apis',
// changeOrigin: true,
// secure: false
// },
2024-03-12 15:46:27 +08:00
'^/pcm': {
2021-07-30 17:47:15 +08:00
ws: false,
2024-04-16 14:52:16 +08:00
// target: 'https://jcos.jointcloud.net:443/',
2024-08-28 16:51:19 +08:00
target: 'https://comnet.jointcloud.net/',
2024-03-22 08:58:45 +08:00
// target: 'https://mock.apifox.com/m1/4000164-0-default/',
2024-03-12 15:46:27 +08:00
// target: 'https://jointcloud.net/apis',
2023-03-27 12:22:13 +08:00
changeOrigin: true,
2024-04-02 16:56:39 +08:00
secure: false
},
2024-04-07 17:19:34 +08:00
'^/auth': {
ws: false,
2024-08-28 16:51:19 +08:00
target: 'https://comnet.jointcloud.net/',
2024-04-07 17:19:34 +08:00
changeOrigin: true,
2023-03-27 12:22:13 +08:00
secure: false
2021-08-04 09:09:16 +08:00
}
}
2021-01-23 18:02:16 +08:00
// before: require('./mock/mock-server.js')
2020-11-10 15:36:19 +08:00
},
2022-07-15 16:38:01 +08:00
chainWebpack: config => {
// hmr fix
config.resolve.symlinks(true)
2024-02-23 11:31:20 +08:00
// add alias
2022-07-15 16:38:01 +08:00
config.resolve.alias.set('@', resolve('src'))
const cdn = {
2024-02-23 11:31:20 +08:00
// visit https://unpkg.com/element-ui/lib/theme-chalk/index.css to get new version
2022-07-15 16:38:01 +08:00
css: ['https://unpkg.com/element-ui@2.13.2/lib/theme-chalk/index.css'],
js: [
2024-10-17 09:23:37 +08:00
'https://cdn.staticfile.net/vue/2.6.10/vue.min.js',
'https://cdn.staticfile.net/echarts/5.2.2/echarts.min.js',
'https://cdn.staticfile.net/element-ui/2.13.2/index.js',
'https://cdn.staticfile.net/vuex/3.1.0/vuex.min.js',
'https://cdn.staticfile.net/vue-router/3.0.2/vue-router.min.js',
'https://cdn.staticfile.net/axios/0.18.1/axios.min.js'
2022-07-15 16:38:01 +08:00
]
2021-01-21 17:43:14 +08:00
}
2022-07-15 16:38:01 +08:00
2021-01-21 17:43:14 +08:00
// it can improve the speed of the first screen, it is recommended to turn on preload
// it can improve the speed of the first screen, it is recommended to turn on preload
config.plugin('preload').tap(() => [
{
rel: 'preload',
// to ignore runtime.js
// https://github.com/vuejs/vue-cli/blob/dev/packages/@vue/cli-service/lib/config/app.js#L171
fileBlacklist: [/\.map$/, /hot-update\.js$/, /runtime\..*\.js$/],
include: 'initial'
}
])
// when there are many pages, it will cause too many meaningless requests
config.plugins.delete('prefetch')
// set svg-sprite-loader
config.module
.rule('svg')
.exclude.add(resolve('src/icons'))
.end()
config.module
.rule('icons')
.test(/\.svg$/)
.include.add(resolve('src/icons'))
.end()
.use('svg-sprite-loader')
.loader('svg-sprite-loader')
.options({
symbolId: 'icon-[name]'
})
.end()
2022-07-15 16:38:01 +08:00
config.plugin('html').tap(args => {
2024-02-23 11:31:20 +08:00
// html add cdn
2022-07-15 16:38:01 +08:00
args[0].cdn = process.env.NODE_ENV === 'production' ? cdn : []
return args
})
},
configureWebpack: config => {
config.name = name
if (process.env.NODE_ENV === 'production') {
config.externals = {
vue: 'Vue',
'element-ui': 'ELEMENT',
'vue-router': 'VueRouter',
vuex: 'Vuex',
axios: 'axios',
echarts: 'echarts'
}
2024-02-23 11:31:20 +08:00
// delete comments
2022-07-15 16:38:01 +08:00
config.optimization.minimizer.push(
new UglifyJsPlugin({
uglifyOptions: {
output: {
2024-02-23 11:31:20 +08:00
comments: false
2022-07-15 16:38:01 +08:00
},
compress: {
// warnings: false,
drop_console: true,
drop_debugger: false,
2024-02-23 11:31:20 +08:00
pure_funcs: ['console.log'] // delete console
2022-07-15 16:38:01 +08:00
}
}
})
)
config.plugins.push(
new FileManagerPlugin({
events: {
onEnd: {
delete: ['./jcce.zip'],
archive: [
{
source: './dist',
destination: './jcce.zip'
2021-01-21 17:43:14 +08:00
}
2022-07-15 16:38:01 +08:00
]
}
}
})
2021-01-21 17:43:14 +08:00
)
2022-07-15 16:38:01 +08:00
}
2021-01-21 17:43:14 +08:00
}
}