| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192 |
- const CompressionWebpackPlugin = require('compression-webpack-plugin')
- const cdnDependencies = require('./dependencies-cdn')
- const HtmlInjectConfigPlugin = require('./plugins/html-inject-config-plugin')
- const path = require('path')
- // 拼接路径
- const resolve = dir => path.join(__dirname, dir)
- // 增加环境变量
- process.env.VUE_APP_VERSION = require('./package.json').version
- // 基础路径 注意发布之前要先修改这里
- const publicPath = process.env.VUE_APP_PUBLIC_PATH || process.env.NODE_ENV === 'development' ? '/' : './'
- // If your port is set to 80,
- // use administrator privileges to execute the command line.
- // For example, Mac: sudo npm run
- // You can change the port by the following method:
- // port = 9999 npm run dev OR npm run dev --port = 9999
- const port = process.env.port || process.env.npm_config_port || 9999 // dev port
- // 是否启动Gzip
- const enableGzip = process.env.VUE_APP_GZ === 'true'
- // 是否启动CDN
- const enableCDN = process.env.VUE_APP_CDN === 'true'
- // =========CDN 处理=============
- // 设置不参与构建的库
- const externals = {}
- let cdn = {}
- if (enableCDN) {
- cdnDependencies.forEach(page => { externals[page.name] = page.library })
- // 引入文件的 cdn 链接
- cdn = {
- css: cdnDependencies.map(e => e.css).filter(e => e),
- js: cdnDependencies.map(e => e.js).filter(e => e)
- }
- }
- // ======================
- module.exports = {
- // 根据你的实际情况更改这里
- publicPath,
- lintOnSave: true,
- devServer: {
- publicPath, // 和 publicPath 保持一致
- port
- },
- css: {
- loaderOptions: {
- // 设置 scss 公用变量文件
- sass: {
- /* sass-loader 8.0语法 */
- // prependData: '@import \'~@/styles/public.scss\';',
- /* sass-loader 9.0写法,感谢github用户 shaonialife*/
- additionalData(content, loaderContext) {
- const { resourcePath, rootContext } = loaderContext
- const relativePath = path.relative(rootContext, resourcePath)
- if (
- relativePath.replace(/\\/g, '/') !== 'src/assets/styles/index.scss'
- ) {
- return '@import "~@/assets/styles/index.scss";' + content
- }
- return content
- }
- }
- }
- },
- configureWebpack: config => {
- const configNew = {}
- if (process.env.NODE_ENV === 'production') {
- configNew.externals = externals
- if (enableGzip) {
- configNew.plugins = [
- // gzip
- new CompressionWebpackPlugin({
- filename: '[path].gz[query]',
- test: new RegExp('\\.(' + ['js', 'css'].join('|') + ')$'),
- threshold: 10240,
- minRatio: 0.8,
- deleteOriginalAssets: false
- })
- ]
- }
- }
- if (process.env.NODE_ENV === 'development') {
- // 关闭 host check,方便使用 ngrok 之类的内网转发工具
- configNew.devServer = {
- disableHostCheck: true
- }
- }
- return configNew
- },
- // 默认情况下 babel-loader 会忽略所有 node_modules 中的文件。如果你想要通过 Babel 显式转译一个依赖,可以在这个选项中列出来。
- transpileDependencies: [
- 'signature_pad'
- ],
- // 默认设置: https://github.com/vuejs/vue-cli/tree/dev/packages/%40vue/cli-service/lib/config/base.js
- chainWebpack: config => {
- /**
- * 添加 CDN 参数到 htmlWebpackPlugin 配置中
- */
- config.plugin('html').tap(args => {
- args[0].cdn = process.env.NODE_ENV === 'production' && enableCDN ? cdn : []
- return args
- })
- // 在html文件注入配置文件
- config.plugin('HtmlInjectConfigPlugin').use(HtmlInjectConfigPlugin, [publicPath])
- /**
- * 删除懒加载模块的 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')
- // 解决 cli3 热更新失效 https://github.com/vuejs/vue-cli/issues/1559
- config.resolve
- .symlinks(true)
- config
- // 开发环境 sourcemap 不包含列信息
- .when(process.env.NODE_ENV === 'development',
- config => config.devtool('cheap-source-map')
- )
- config.when(process.env.NODE_ENV !== 'development',
- (config) => {
- config.performance.set('hints', false)
- config.devtool('none')
- config.optimization.splitChunks({
- chunks: 'all',
- cacheGroups: {
- libs: {
- name: 'chunk-libs',
- test: /[\\/]node_modules[\\/]/,
- priority: 10,
- chunks: 'initial'
- },
- elementUI: {
- name: 'chunk-vant',
- priority: 20,
- test: /[\\/]node_modules[\\/]_?vant(.*)/
- },
- commons: {
- name: 'chunk-commons',
- test: resolve('src/components'),
- minChunks: 3,
- priority: 5,
- reuseExistingChunk: true
- }
- }
- })
- })
- // markdown
- config.module
- .rule('md')
- .test(/\.md$/)
- .use('text-loader')
- .loader('text-loader')
- .end()
- // image exclude
- const imagesRule = config.module.rule('images')
- imagesRule
- .test(/\.(png|jpe?g|gif|webp|svg)(\?.*)?$/)
- .exclude
- .add(resolve('src/assets/svg-icons/icons'))
- .end()
- // 重新设置 alias
- config.resolve.alias
- .set('@api', resolve('src/api'))
- .set('vue$', 'vue/dist/vue.esm.js')
- // 分析工具
- if (process.env.npm_config_report) {
- config
- .plugin('webpack-bundle-analyzer')
- .use(require('webpack-bundle-analyzer').BundleAnalyzerPlugin)
- }
- },
- // 不输出 map 文件
- productionSourceMap: false,
- // i18n
- pluginOptions: {
- i18n: {
- locale: 'zh-CN',
- fallbackLocale: 'zh-CN',
- localeDir: 'locales',
- enableInSFC: true
- }
- }
- }
|