// const PrerenderSPAPlugin = require('prerender-spa-plugin');
// const Renderer = PrerenderSPAPlugin.PuppeteerRenderer;
// const path = require('path');
// 打包去掉console
const TerserPlugin = require('terser-webpack-plugin');
module.exports = {
// 查阅 https://github.com/vuejs/vue-cli/tree/dev/docs/zh/config
// 项目部署的基础路径,我们默认假设你的应用将会部署在域名的根部,比如 https://www.my-app.com/
publicPath: './',
// 输出文件目录
outputDir: 'dist', //Default: 'dist'
// 放置生成的静态资源 (js、css、img、fonts) 的 (相对于 outputDir 的) 目录
assetsDir: './assets', //Default: ''
// 指定生成的 index.html 的输出路径 (相对于 outputDir)。也可以是一个绝对路径。
indexPath: 'index.html', //Default: 'index.html'
// 默认情况下,生成的静态资源在它们的文件名中包含了 hash 以便更好的控制缓存。然而,这也要求 index 的 HTML 是被 Vue CLI 自动生成的。如果你无法使用 Vue CLI 生成的 index HTML,你可以通过将这个选项设为 false 来关闭文件名哈希。
filenameHashing: true, //Default: true
// 是否在保存的时候使用 `eslint-loader` 进行检查。
// 有效的值:`true` | `false` | `"error"`设置为 `"error"` 时,检查出的错误会触发编译失败。
lintOnSave: false, //Default: true
// 是否使用包含运行时编译器的 Vue 构建版本。设置为 true 后你就可以在 Vue 组件中使用 template 选项了,但是这会让你的应用额外增加 10kb 左右
runtimeCompiler: false, //Default: false
//默认情况下 babel-loader 会忽略所有 node_modules 中的文件。如果你想要通过 Babel 显式转译一个依赖,可以在这个选项中列出来
transpileDependencies: [ /* string or RegExp */ ], //Default: []
// 如果你不需要生产环境的 source map,可以将其设置为 false 以加速生产环境构建。
productionSourceMap: false, //Default: true
// 设置生成的 HTML 中 <link rel="stylesheet"> 和 <script> 标签的 crossorigin 属性。
crossorigin: '', //Default: undefined
// 在生成的 HTML 中的 <link rel="stylesheet"> 和 <script> 标签上启用 Subresource Integrity (SRI)
integrity: false, //Default: false
// 对内部的 webpack 配置进行更细粒度的修改。
chainWebpack: config => {
config.module
.rule('vue')
.use('vue-loader')
.loader('vue-loader')
.tap(options => {
// 修改它的选项...
return options
})
},
// 如果这个值是一个对象,则会通过 webpack-merge 合并到最终的配置中。
// 如果这个值是一个函数,则会接收被解析的配置作为参数。该函数及可以修改配置并不返回任何东西,也可以返回一个被克隆或合并过的配置版本。Type: Object | Function
configureWebpack: config => {
if (process.env.NODE_ENV === 'production') {
// 为生产环境修改配置...
return {
// plugins: [
// // 预渲染配置
// new PrerenderSPAPlugin({
// //要求-给的WebPack-输出应用程序的路径预渲染。
// staticDir: path.join(__dirname, 'dist'),
// //必需,要渲染的路线。
// routes: ['/login'],
// //必须,要使用的实际渲染器,没有则不能预编译
// renderer: new Renderer({
// inject: {
// foo: 'bar'
// },
// headless: false, //渲染时显示浏览器窗口。对调试很有用。
// //等待渲染,直到检测到指定元素。
// //例如,在项目入口使用`document.dispatchEvent(new Event('custom-render-trigger'))`
// renderAfterDocumentEvent: 'render-event'
// })
// })
// ],
// 打包去掉console 必须引入TerserPlugin
optimization: {
minimizer: [new TerserPlugin({
terserOptions: {
compress: {
drop_console: true
}
}
})]
},
// 关闭 webpack 的性能提示
performance: {
hints: false
}
}
} else {
// 为开发环境修改配置...
return;
}
},
// / 构建多页时使用Default: undefined
pages: undefined,
// pages: {
// index: {
// // 入口文件
// entry: './src/main.js',
// // 模版文件
// template: 'public/index.html',
// // 输出文件名
// filename: 'index.html'
// }
// },
// CSS 相关选项
css: {
// 项目package.json查看@vue/cli-service版本号进行配置
// v3用modules v4用requireModuleExtension
modules: false,
// https://github.com/vuejs/vue-cli/blob/dev/docs/zh/guide/css.md#css-modules
// 如果你想去掉文件名中的 .module,可以设置 vue.config.js 中的 css.requireModuleExtension 为 false
// requireModuleExtension: false,
// 将组件内的 CSS 提取到一个单独的 CSS 文件 (只用在生产环境中)
extract: true, //Default: 生产环境下是 true,开发环境下是 false
// 是否为 CSS 开启 source map。设置为 true 之后可能会影响构建的性能。
sourceMap: false,
//向 CSS 相关的 loader 传递选项(支持 css-loader postcss-loader sass-loader less-loader stylus-loader)
loaderOptions: {}, //Default: {}
// 默认情况下,只有 *.module.[ext] 结尾的文件才会被视作 CSS Modules 模块。设置为 true 后你就可以去掉文件名中的 .module 并将所有的 *.(css|scss|sass|less|styl(us)?) 文件视为 CSS Modules 模块。
},
// 配置 webpack-dev-server。
devServer: {
open: true,
host: '0.0.0.0',
port: 8088,
https: false,
hotOnly: false,
proxy: null // 设置代理 string | Object
// //只能代理一个地址
// proxy: 'https://bygx.zzxkeji.cn', //将任何未知请求 (没有匹配到静态文件的请求) 代理到http://localhost:4000
// //可以代理多个地址
// proxy: {
// '/api': { // "/api" 代理属性的key值,碰到以"/api"开头的请求,就知道要进行代理,可以代理多个,有多个代理属性key
// target: 'https://bygx.zzxkeji.cn', //要代理的服务器地址(按自己需求文档来定)
// secure: true, // 如果是https接口,需要配置这个参数
// // ws: true, //如果要代理 websockets,配置这个参数
// changeOrigin: true, //是否开启开启代理
// pathRewrite: {
// '^/api': '' //重写路径,匹配以/api为开头的路径都变为空字符串
// },
// // 如果接口路径为https://bygx.zzxkeji.cn/api/news_list 就不需要重写路径,因为接口内部有/api这个key
// // /api/news_list==>https://bygx.zzxkeji.cn/api/news_list
// // 如果接口路径为https://bygx.zzxkeji.cn/news_list 使用代理必须手动增加key值/api前缀才能代理
// // 加入之后成为/api/news_list==>https://bygx.zzxkeji.cn/api/news_list 最后路径多了一个/api,所以需要用pathRewrite重写路径
// // 把'^/api': ''把手动加入的/api去掉结果为https://bygx.zzxkeji.cn/news_list完美
// }
// }
},
// 是否为 Babel 或 TypeScript 使用 thread-loader。该选项在系统的 CPU 有多于一个内核时自动启用,仅作用于生产构建。
parallel: require('os').cpus().length > 1, //Default: require('os').cpus().length > 1
// PWA插件传递选项。
// 查阅 https://github.com/vuejs/vue-docs-zh-cn/blob/master/vue-cli-plugin-pwa/README.md
// pwa: {
// // 配置页面icon 默认值
// iconPaths: {
// favicon32: 'img/icons/favicon-32x32.png',
// favicon16: 'img/icons/favicon-16x16.png',
// appleTouchIcon: 'img/icons/apple-touch-icon-152x152.png',
// maskIcon: 'img/icons/safari-pinned-tab.svg',
// msTileImage: 'img/icons/msapplication-icon-144x144.png'
// }
// },
// 三方插件的选项
pluginOptions: {
// ...
}
}
原文作者:匆匆那年_海,博客主页://www.greatytc.com/u/910c0667c515
95后前端汉子,爱编程、优秀、聪明、理性、沉稳、智慧的程序猿一枚。