JCC-RIP/vue.config.js

170 lines
5.4 KiB
JavaScript
Raw 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
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
*/
2021-08-04 09:09:16 +08:00
publicPath: process.env.NODE_ENV === 'production' ? '/monitor/' : '/monitor/',
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: {
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: {
2022-06-11 17:22:47 +08:00
// '^/login': {
2021-08-03 17:36:24 +08:00
// ws: false,
2022-06-11 17:22:47 +08:00
// target: 'https://10.101.15.6/prod-api/'/* 测试环境 */
// // target: 'https://jointcloud.net/prod-api/'/* 演示环境 */
2021-08-03 17:36:24 +08:00
// },
2022-02-28 16:19:36 +08:00
'^/dockerhub/api/': {
2022-03-17 15:57:24 +08:00
target: 'http://10.105.20.3:30880/'
2022-02-28 16:19:36 +08:00
// pathRewrite: {
// '^/dockerhub': '/api'
// },
// secure: false
},
2021-08-03 17:36:24 +08:00
'^/blockChain': {
2021-07-30 17:47:15 +08:00
ws: false,
2021-08-05 15:35:27 +08:00
target: 'https://106.53.150.192/',
changeOrigin: true,
2021-10-15 16:20:04 +08:00
secure: false
2021-07-30 17:47:15 +08:00
},
2022-06-21 11:23:09 +08:00
'^/jcc-': {
2022-03-23 15:41:27 +08:00
ws: false,
2022-07-11 15:54:27 +08:00
target: 'https://jointcloud.net/apis', /* 测试环境 */
2021-06-27 22:38:01 +08:00
changeOrigin: true,
2022-06-11 17:22:47 +08:00
secure: false
2022-02-28 16:19:36 +08:00
},
2022-06-11 17:22:47 +08:00
// '/kapis/terminal.kubesphere.io': {
// ws: true,
// changeOrigin: true,
// target: 'ws://jointcloud.net/prod-api/' /* 测试环境 */
// // target: 'ws://jointcloud.net/prod-api/' /* 演示环境 */
// },
2022-02-28 16:19:36 +08:00
'/monitoringscreen/': {
2022-06-28 15:33:19 +08:00
ws: false,
target: 'https://10.101.15.6/apis',
changeOrigin: true
2022-05-23 17:33:30 +08:00
},
'^/edgex': {
ws: false,
target: 'https://10.101.15.6/' /* 测试环境 */
// target: 'https://jointcloud.net/prod-api/' /* 演示环境 */
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
},
2021-01-21 17:43:14 +08:00
configureWebpack: {
// provide the app's title in webpack's name field, so that
// it can be accessed in index.html to inject the correct title.
name: name,
resolve: {
alias: {
'@': resolve('src')
}
2022-02-28 16:19:36 +08:00
},
module: {
unknownContextCritical: false
2021-01-21 17:43:14 +08:00
}
},
chainWebpack(config) {
// 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()
config
.when(process.env.NODE_ENV !== 'development',
config => {
config
.plugin('ScriptExtHtmlWebpackPlugin')
.after('html')
.use('script-ext-html-webpack-plugin', [{
// `runtime` must same as runtimeChunk name. default is `runtime`
inline: /runtime\..*\.js$/
}])
.end()
config
.optimization.splitChunks({
chunks: 'all',
cacheGroups: {
libs: {
name: 'chunk-libs',
test: /[\\/]node_modules[\\/]/,
priority: 10,
chunks: 'initial' // only package third parties that are initially dependent
},
elementUI: {
name: 'chunk-elementUI', // split elementUI into a single package
priority: 20, // the weight needs to be larger than libs and app or it will be packaged into libs or app
test: /[\\/]node_modules[\\/]_?element-ui(.*)/ // in order to adapt to cnpm
},
commons: {
name: 'chunk-commons',
test: resolve('src/components'), // can customize your rules
minChunks: 3, // minimum common number
priority: 5,
reuseExistingChunk: true
}
}
})
// https:// webpack.js.org/configuration/optimization/#optimizationruntimechunk
config.optimization.runtimeChunk('single')
}
)
}
}