1 Star 0 Fork 125

wxzhouq/Admin.UI

forked from 中台/Admin.UI 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
vue.config.js 3.19 KB
一键复制 编辑 原始数据 按行查看 历史
Administrator 提交于 2020-03-22 22:17 . 提交项目
const path = require('path')
function resolve(dir) {
return path.join(__dirname, dir)
}
const isDev = process.env.NODE_ENV === 'development'
module.exports = {
// 基本路径
publicPath: '/',
// 输出文件目录
outputDir: 'dist',
// assetsDir: 'static',
lintOnSave: isDev,
productionSourceMap: false,
devServer: {
open: true, // 自动启动浏览器
port: 3333,
// 浏览器弹出错误
overlay: {
warnings: false,
errors: true
},
proxy: {
// 配置多个代理
// detail: https://cli.vuejs.org/config/#devserver-proxy
'^/api': {
target: 'http://localhost:8081',
ws: true,
changeOrigin: true
},
'^/swagger': {
target: 'http://localhost:8081',
ws: true,
changeOrigin: true
}
}
},
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')
}
},
// 发布时关闭警告
performance: {
hints: false
}
},
// webpack配置
// see https://github.com/vuejs/vue-cli/blob/dev/docs/webpack.md
chainWebpack(config) {
/**
* 删除懒加载模块的 prefetch preload,降低带宽压力
* https://cli.vuejs.org/zh/guide/html-and-static-assets.html#prefetch
* https://cli.vuejs.org/zh/guide/html-and-static-assets.html#preload
* 而且预渲染时生成的 prefetch 标签是 modern 版本的,低版本浏览器是不需要的
*/
config.plugins.delete('prefetch').delete('preload')
config
// https://webpack.js.org/configuration/devtool/#development
.when(isDev, config => config.devtool('cheap-source-map'))
config.when(!isDev, config => {
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
}
}
})
config.optimization.runtimeChunk('single')
})
},
// css相关配置
css: {
// 是否使用css分离插件 ExtractTextPlugin
extract: true,
sourceMap: false,
// css预设器配置项
loaderOptions: {},
// 启用 CSS modules for all css / pre-processor files.
// modules: false,
requireModuleExtension: true
},
// use thread-loader for babel & TS in production build
// enabled by default if the machine has more than 1 cores
parallel: require('os').cpus().length > 1
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zxfsc/Admin.UI.git
git@gitee.com:zxfsc/Admin.UI.git
zxfsc
Admin.UI
Admin.UI
master

搜索帮助