mirror of
http://112.124.100.131/ebiz-ai/ebiz-ai-knowledge-manage.git
synced 2025-12-07 01:46:48 +08:00
- 新增 API 模块用于获取每日会话数据 - 实现多个图表组件以展示不同维度的数据- 优化概览页面布局和样式 - 调整 iframe 高度样式 - 新增 echarts 服务端代理配置
175 lines
4.9 KiB
JavaScript
175 lines
4.9 KiB
JavaScript
'use strict'
|
||
const path = require('path')
|
||
const defaultSettings = require('./src/assets/js/utils/settings.js')
|
||
const { DIFY_URL } = require('./src/config/base-url')
|
||
|
||
function resolve(dir) {
|
||
return path.join(__dirname, dir)
|
||
}
|
||
const name = defaultSettings.title || 'basic-pc' // 页面标题
|
||
//如果您的端口设置为80,
|
||
//使用管理员权限执行命令行。
|
||
//例如,Mac:sudo npm run
|
||
//您可以通过以下方法更改端口:
|
||
// port = 9527 npm run dev或npm run dev --port = 9527
|
||
const port = process.env.port || process.env.npm_config_port || 7006 //开发端口
|
||
//所有配置项说明都可以在https://cli.vuejs.org/config/ 中找到
|
||
module.exports = {
|
||
runtimeCompiler: true,
|
||
/*如果您打算在子路径下部署站点,则需要设置publicPath,
|
||
例如GitHub Pages。如果您打算将网站部署到https://foo.github.io/bar/,
|
||
然后publicPath应该设置为“ / bar /”。
|
||
在大多数情况下,请使用'/'!
|
||
详细信息:https://cli.vuejs.org/config/#publicpath
|
||
*/
|
||
publicPath: '/',
|
||
outputDir: 'dist',
|
||
assetsDir: 'static',
|
||
lintOnSave: process.env.NODE_ENV === 'development',
|
||
productionSourceMap: false,
|
||
devServer: {
|
||
port: port,
|
||
open: true,
|
||
overlay: {
|
||
warnings: false,
|
||
errors: true
|
||
},
|
||
proxy: {
|
||
[DIFY_URL]: {
|
||
// target: 'http://localhost:3000',
|
||
target: 'http://10.147.17.115:3000',
|
||
changeOrigin: true,
|
||
onProxyRes: (proxyRes, req, res) => {
|
||
delete proxyRes.headers['x-frame-options']
|
||
},
|
||
pathRewrite: {
|
||
// '^/app': '/'
|
||
},
|
||
logLevel: 'debug'
|
||
},
|
||
'/api': {
|
||
target: process.env.VUE_APP_ADMIN,
|
||
changeOrigin: true,
|
||
pathRewrite: {
|
||
'^/api': ''
|
||
}
|
||
},
|
||
'/jifen': {
|
||
target: 'http://192.168.8.165:7196',
|
||
changeOrigin: true,
|
||
pathRewrite: {
|
||
'^/jifen': ''
|
||
}
|
||
},
|
||
'/zixi': {
|
||
target: 'http://192.168.8.165:7196/',
|
||
changeOrigin: true,
|
||
pathRewrite: {
|
||
'^/jifen': ''
|
||
}
|
||
},
|
||
'/echarts': {
|
||
target: 'http://192.168.3.229:5001/console/',
|
||
changeOrigin: true,
|
||
pathRewrite: {
|
||
'^/echarts': ''
|
||
}
|
||
}
|
||
}
|
||
},
|
||
configureWebpack: {
|
||
//在webpack的名称字段中提供应用程序的标题,以便
|
||
//可以在index.html中对其进行访问以注入正确的标题。
|
||
name: name,
|
||
module: {
|
||
rules: [
|
||
{
|
||
test: /\.mjs$/,
|
||
include: /node_modules/,
|
||
type: 'javascript/auto'
|
||
}
|
||
]
|
||
},
|
||
resolve: {
|
||
alias: {
|
||
'@': resolve('src')
|
||
}
|
||
}
|
||
},
|
||
chainWebpack(config) {
|
||
config.plugins.delete('preload') // TODO: 需要测试
|
||
config.plugins.delete('prefetch') // TODO: 需要测试
|
||
|
||
//设置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()
|
||
|
||
//设置preserveWhitespace
|
||
config.module
|
||
.rule('vue')
|
||
.use('vue-loader')
|
||
.loader('vue-loader')
|
||
.tap(options => {
|
||
options.compilerOptions.preserveWhitespace = true
|
||
return options
|
||
})
|
||
.end()
|
||
// https://webpack.js.org/configuration/devtool/#development
|
||
config.when(process.env.NODE_ENV === 'development', config =>
|
||
config.devtool('cheap-source-map')
|
||
)
|
||
config.when(process.env.NODE_ENV !== 'development', config => {
|
||
config
|
||
.plugin('ScriptExtHtmlWebpackPlugin')
|
||
.after('html')
|
||
.use('script-ext-html-webpack-plugin', [
|
||
{
|
||
//`runtime`必须与runtimeChunk名称相同。默认是“运行时”
|
||
inline: /runtime\..*\.js$/
|
||
}
|
||
])
|
||
.end()
|
||
config.optimization.splitChunks({
|
||
chunks: 'all',
|
||
minSize: 3000,
|
||
maxSize: 6000,
|
||
maxInitialRequests: 3,
|
||
cacheGroups: {
|
||
libs: {
|
||
name: 'chunk-libs',
|
||
test: /[\\/]node_modules[\\/]/,
|
||
priority: 10,
|
||
chunks: 'initial' //仅打包最初依赖的第三方
|
||
},
|
||
elementUI: {
|
||
name: 'chunk-elementUI', //将elementUI拆分为一个包
|
||
priority: 20, //权重必须大于libs和app,否则将打包到libs或app中
|
||
test: /[\\/]node_modules[\\/]_?element-ui(.*)/ //为了适应cnpm
|
||
},
|
||
commons: {
|
||
name: 'chunk-commons',
|
||
test: resolve('src/components'), //可以自定义规则
|
||
minChunks: 3, //最小公用数
|
||
priority: 5,
|
||
reuseExistingChunk: true
|
||
}
|
||
}
|
||
})
|
||
config.optimization.runtimeChunk('single')
|
||
})
|
||
}
|
||
}
|