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: {
|
2021-10-28 17:33:28 +08:00
|
|
|
'^/login': {
|
2021-03-11 19:09:41 +08:00
|
|
|
ws: false,
|
2022-05-06 16:41:19 +08:00
|
|
|
target: 'https://10.101.15.6/prod-api/'/* 测试环境 */
|
|
|
|
// target: 'https://jointcloud.net/prod-api/'/* 演示环境 */
|
2021-06-30 17:37:04 +08:00
|
|
|
},
|
2021-08-03 17:36:24 +08:00
|
|
|
// '^/v1': {
|
|
|
|
// ws: false,
|
|
|
|
// secure: false,
|
|
|
|
// changeOrigin: true,
|
|
|
|
// target: 'https://103.116.78.162:30443/'
|
|
|
|
// },
|
|
|
|
// '/v3-public': {
|
|
|
|
// ws: false,
|
|
|
|
// secure: false,
|
|
|
|
// changeOrigin: true,
|
|
|
|
// target: 'https://103.116.78.162:30443/'
|
|
|
|
// },
|
2021-03-11 19:09:41 +08:00
|
|
|
'/kapis': {
|
2021-06-27 22:38:01 +08:00
|
|
|
// ws: true,
|
2021-06-09 03:02:46 +08:00
|
|
|
// target: 'http://124.71.196.205:30881/' /* EduCoder */
|
|
|
|
// target: 'http://119.3.157.144:30881/', /* KubeX */
|
2022-03-17 15:57:24 +08:00
|
|
|
// target: 'http://10.105.20.3:30880/'/* Host */
|
2022-05-06 16:41:19 +08:00
|
|
|
target: 'https://10.101.15.6/prod-api/'/* 测试环境 */
|
|
|
|
// target: 'https://jointcloud.net/prod-api/' /* 演示环境 */
|
2021-06-09 03:02:46 +08:00
|
|
|
// target: 'http://39.103.233.49:30881/', /* BJ-Member2 */
|
2021-01-23 18:02:16 +08:00
|
|
|
// changeOrigin: true,
|
|
|
|
},
|
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-07-29 16:03:22 +08:00
|
|
|
'^/prom': {
|
2021-03-11 19:09:41 +08:00
|
|
|
ws: false,
|
2021-08-04 09:09:16 +08:00
|
|
|
target: 'http://119.3.157.144:9090/', /* KubeX */
|
2021-03-22 10:42:04 +08:00
|
|
|
pathRewrite: {
|
|
|
|
'^/prom': ''
|
|
|
|
}
|
2021-05-18 15:34:51 +08:00
|
|
|
},
|
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
|
|
|
},
|
|
|
|
'^/api/': {
|
2021-05-18 15:34:51 +08:00
|
|
|
ws: false,
|
2022-02-28 16:19:36 +08:00
|
|
|
changeOrigin: true,
|
|
|
|
// target: 'http://10.105.20.4:30766'
|
2022-05-06 16:41:19 +08:00
|
|
|
target: 'https://10.101.15.6/prod-api/' /* 测试环境 */
|
|
|
|
// target: 'https://jointcloud.net/prod-api/' /* 演示环境 */
|
2021-06-27 22:38:01 +08:00
|
|
|
},
|
2021-07-30 17:47:15 +08:00
|
|
|
'^/apis/': {
|
2021-07-29 16:03:22 +08:00
|
|
|
ws: false,
|
2022-05-06 16:41:19 +08:00
|
|
|
target: 'https://10.101.15.6/prod-api/' /* 测试环境 */
|
|
|
|
// target: 'https://jointcloud.net/prod-api/' /* 演示环境 */
|
2021-07-30 17:47:15 +08:00
|
|
|
// changeOrigin: true,
|
2021-07-29 16:03:22 +08:00
|
|
|
},
|
2022-04-05 22:46:59 +08:00
|
|
|
'^/jcc-extend/': {
|
|
|
|
ws: false,
|
2022-05-06 16:41:19 +08:00
|
|
|
target: 'http://10.101.15.6/apis/v1' /* 测试环境 */
|
|
|
|
// target: 'http://10.101.15.6/apis/v1' /* 演示环境 */
|
2022-04-05 22:46:59 +08:00
|
|
|
},
|
2021-08-03 17:36:24 +08:00
|
|
|
'^/virtual': {
|
2021-07-29 16:03:22 +08:00
|
|
|
ws: false,
|
2022-05-17 17:36:37 +08:00
|
|
|
// target: 'https://10.101.15.6/', /* 测试环境 */
|
|
|
|
target: 'https://jointcloud.net/', /* 演示环境 */
|
2022-04-28 17:26:24 +08:00
|
|
|
// target: 'https://10.105.20.1/',
|
2021-08-05 15:35:27 +08:00
|
|
|
changeOrigin: true,
|
2021-10-15 16:20:04 +08:00
|
|
|
secure: false
|
2022-04-28 17:26:24 +08:00
|
|
|
// pathRewrite: {
|
|
|
|
// '^/virtual': ''
|
|
|
|
// }
|
2021-07-29 16:03:22 +08:00
|
|
|
},
|
2022-03-23 15:41:27 +08:00
|
|
|
'^/jcc-faas-manager': {
|
2021-07-29 16:03:22 +08:00
|
|
|
ws: false,
|
2022-05-06 16:41:19 +08:00
|
|
|
target: 'https://10.101.15.6/apis/v1' /* 测试环境 */
|
|
|
|
// target: 'https://jointcloud.net/apis/v1' /* 演示环境 */
|
2022-03-23 15:41:27 +08:00
|
|
|
// changeOrigin: true,
|
|
|
|
},
|
|
|
|
'^/jcc-mall': {
|
|
|
|
ws: false,
|
2022-05-06 16:41:19 +08:00
|
|
|
target: 'https://10.101.15.6/apis/v1' /* 测试环境 */
|
|
|
|
// target: 'https://jointcloud.net/apis/v1' /* 演示环境 */
|
2021-08-03 17:36:24 +08:00
|
|
|
// changeOrigin: true,
|
2021-07-29 16:03:22 +08:00
|
|
|
},
|
2021-06-27 22:38:01 +08:00
|
|
|
'/kapis/terminal.kubesphere.io': {
|
|
|
|
ws: true,
|
|
|
|
changeOrigin: true,
|
2022-05-06 16:41:19 +08:00
|
|
|
target: 'ws://jointcloud.net/prod-api/' /* 测试环境 */
|
|
|
|
// target: 'ws://jointcloud.net/prod-api/' /* 演示环境 */
|
2022-02-28 16:19:36 +08:00
|
|
|
},
|
|
|
|
'/monitoringscreen/': {
|
|
|
|
ws: true,
|
|
|
|
changeOrigin: true,
|
2022-05-06 16:41:19 +08:00
|
|
|
target: 'https://10.101.15.6' /* 测试环境 */
|
|
|
|
// target: 'https://jointcloud.net' /* 演示环境 */
|
2022-05-23 17:33:30 +08:00
|
|
|
},
|
|
|
|
'^/edgex': {
|
|
|
|
ws: false,
|
|
|
|
target: 'https://10.101.15.6/' /* 测试环境 */
|
|
|
|
// target: 'https://jointcloud.net/prod-api/' /* 演示环境 */
|
2022-05-30 17:38:09 +08:00
|
|
|
},
|
|
|
|
'/jcc-admin': {
|
2022-05-31 17:34:40 +08:00
|
|
|
target: 'http://10.101.15.6:8000/',
|
2022-05-30 17:38:09 +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
|
|
|
},
|
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')
|
|
|
|
}
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|