cmc-web/webs/log-web/vue.config.js

33 lines
736 B
JavaScript
Raw Permalink Normal View History

2024-08-20 12:11:31 +00:00
/*
* @Author: Haijun Zhang
* @Date: 2022-11-03 15:30:04
* @LastEditTime: 2022-11-11 14:14:26
* @LastEditors: Haijun Zhang
* @Description:
* @FilePath: \cmc-web\webs\log-web\vue.config.js
*/
const path = require('path')
const { name } = require('./package')
const { getCommonConifg, commonChainWebpack, commonConfigureWebpack } = require('../../build/base')
function resolve(dir) {
return path.join(__dirname, dir)
}
module.exports = {
...getCommonConifg({
outputDir: 'log-web',
devServer: {
port: 8086
}
}),
2024-08-21 01:17:14 +00:00
configureWebpack: config => {
2024-08-20 12:11:31 +00:00
const configs = commonConfigureWebpack(name)
return {
...configs
}
},
2024-08-21 01:17:14 +00:00
chainWebpack: config => {
2024-08-20 12:11:31 +00:00
commonChainWebpack(config, resolve)
}
}