vue-cli31/vue.config.js

161 lines
5.5 KiB
JavaScript
Raw Normal View History

2019-07-12 10:23:40 +08:00
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer')
.BundleAnalyzerPlugin
const path = require('path')
const webpack = require('webpack')
const AddAssetHtmlPlugin = require('add-asset-html-webpack-plugin')
// 导入compression-webpack-plugin
const CompressionWebpackPlugin = require('compression-webpack-plugin')
// 定义压缩文件类型
const productionGzipExtensions = ['js', 'css']
2018-08-15 16:26:55 +08:00
function resolve(dir) {
return path.join(__dirname, dir)
}
2019-07-12 10:23:40 +08:00
const proxyTargetMap = {
prod: 'https://xxx.xxx.com/',
2019-08-13 10:15:51 +08:00
randy: 'http://47.105.71.81:3306',
2019-07-12 10:23:40 +08:00
peter: 'http://192.168.11.178:3001'
}
let proxyTarget = proxyTargetMap[process.env.API_TYPE] || proxyTargetMap.prod
let publicPath = process.env.NODE_ENV === 'production' ? '/' : '/'
let dllPublishPath = '/vendor'
2018-08-15 16:26:55 +08:00
module.exports = {
2019-07-12 10:23:40 +08:00
publicPath: publicPath,
2018-08-15 16:26:55 +08:00
outputDir: 'dist',
// 放置静态资源的地方 (js/css/img/font/...)
// assetsDir: '',
// 是否在保存的时候使用 `eslint-loader` 进行检查。
// 有效的值:`ture` | `false` | `"error"`
// 当设置为 `"error"` 时,检查出的错误会触发编译失败。
lintOnSave: true,
// 使用带有浏览器内编译器的完整构建版本
// 查阅 https://cn.vuejs.org/v2/guide/installation.html#运行时-编译器-vs-只包含运行时
// compiler: false,
// babel-loader 默认会跳过 node_modules 依赖。
// 通过这个选项可以显式转译一个依赖。
2019-07-12 10:23:40 +08:00
transpileDependencies: [
/* string or regex */
],
2018-08-15 16:26:55 +08:00
// 是否为生产环境构建生成 source map
productionSourceMap: false,
// 调整内部的 webpack 配置。
// 查阅 https://github.com/vuejs/vue-docs-zh-cn/blob/master/vue-cli/webpack.md
2019-07-12 10:23:40 +08:00
chainWebpack: config => {
// 移除 prefetch 插件,解决组件懒加载失效的问题
config.plugins.delete('prefetch')
// 添加新的svg-sprite-loader处理svgIcon
config.module
.rule('svgIcon')
.test(/\.svg$/)
.include.add(resolve('src/icons'))
.end()
.use('svg-sprite-loader')
.loader('svg-sprite-loader')
.tap(options => {
options = {
symbolId: 'icon-[name]'
}
return options
})
// 原有的svg图像处理loader添加exclude
config.module
.rule('svg')
.exclude.add(resolve('src/icons'))
.end()
},
2018-08-15 16:26:55 +08:00
// CSS 相关选项
css: {
// 将组件内的 CSS 提取到一个单独的 CSS 文件 (只用在生产环境中)
// 也可以是一个传递给 `extract-text-webpack-plugin` 的选项对象
extract: true,
// 是否开启 CSS source map
2019-07-12 10:23:40 +08:00
sourceMap: true,
2018-08-15 16:26:55 +08:00
// 为预处理器的 loader 传递自定义选项。比如传递给
// sass-loader 时,使用 `{ sass: { ... } }`。
loaderOptions: {},
// 为所有的 CSS 及其预处理文件开启 CSS Modules。
// 这个选项不会影响 `*.vue` 文件。
modules: false
},
// 在生产环境下为 Babel 和 TypeScript 使用 `thread-loader`
// 在多核机器下会默认开启。
parallel: require('os').cpus().length > 1,
// PWA 插件的选项。
// 查阅 https://github.com/vuejs/vue-docs-zh-cn/blob/master/vue-cli-plugin-pwa/README.md
pwa: {},
// 配置 webpack-dev-server 行为。
devServer: {
2019-07-12 10:23:40 +08:00
disableHostCheck: true,
2018-08-15 16:26:55 +08:00
open: process.platform === 'darwin',
host: 'localhost',
2019-07-12 10:23:40 +08:00
port: 8080,
2018-08-15 16:26:55 +08:00
https: false,
hotOnly: false,
2019-07-12 10:23:40 +08:00
// eslint-disable-next-line no-dupe-keys
open: true,
2018-08-15 16:26:55 +08:00
// 查阅 https://github.com/vuejs/vue-docs-zh-cn/blob/master/vue-cli/cli-service.md#配置代理
2019-07-12 10:23:40 +08:00
proxy: {
'/api': {
target: proxyTarget,
changeOrigin: true,
pathRewrite: {
'^/api': ''
}
}
},
before: app => {}
2018-08-15 16:26:55 +08:00
},
2019-07-12 10:23:40 +08:00
// eslint-disable-next-line no-dupe-keys
2018-08-15 16:26:55 +08:00
configureWebpack: config => {
if (process.env.NODE_ENV === 'production') {
// 为生产环境修改配置...
2019-07-12 10:23:40 +08:00
config.plugins.push(
new webpack.DllReferencePlugin({
context: process.cwd(),
manifest: require('./public/vendor/vendor-manifest.json')
}),
// 将 dll 注入到 生成的 html 模板中
new AddAssetHtmlPlugin({
// dll文件位置
filepath: path.resolve(__dirname, './public/vendor/*.js'),
// dll 引用路径
publicPath: dllPublishPath,
// dll最终输出的目录
outputPath: './vendor'
}),
// 开启压缩
new CompressionWebpackPlugin({
filename: '[path].gz[query]',
algorithm: 'gzip',
test: new RegExp(
'\\.(' + productionGzipExtensions.join('|') + ')$'
),
threshold: 10240,
minRatio: 0.8
})
)
if (process.env.npm_lifecycle_event === 'analyze') {
config.plugins.push(new BundleAnalyzerPlugin())
2018-08-15 16:26:55 +08:00
}
} else {
// 为开发环境修改配置...
}
},
// 第三方插件的选项
2019-07-12 10:23:40 +08:00
pluginOptions: {}
}