vuecli2.x升级到vuecli4.0

之前项目一般都是用的是vuecli2.x版本的脚手架进行项目搭建的。但是随着项目代码的增多,项目文件越来越大,短时间内频繁热更新会导致内存大量溢出。如下图所示:


初次启动.png

通过npm run dev启动后node进程差不多占用1.3G
如果短时间内频繁保存代码的话,内存会急剧上升


代码保存3次后.png

这张图片是在代码并未有任何改动的情况下,连续保存3次时的图片,由此图可知此时node进程占用快到2G。
过了一段时间后,node进程大小有1.8G,这就说明一个问题。代码在进行热更新的时候存在内存泄漏,所以node进程占用内存会越来越大,严重影响开发效率。
image.png

对于这个问题,通过升级webpack,基本可以解决该问题。所以将vuecli2.x升级到vuecli4.0版本,因为vuecli4.0脚手架中包含webpack4.0。下面就来讲一下关于如何将vuecli2.x升级到vuecli4.0。
首先,需要通过npm全局安装vuecli4.0插件

npm install -g @vue/cli

全局安装完之后,直接通过vue create my-app自动生成vuecli4.0的项目。

vue create my-app

项目生成后,可以看到如下图所示目录


image.png

在该图中和vuecli2相比,会发现新的vuecli4.0和vuecli2.0相比,少了webpack的配置文件,还有vuecli2的static文件夹替换成了public文件夹。另外,vuecli4.0默认配置就可以支持typescript,而vuecli2.0就需要自己去改ts配置文件。
在原项目,涉及到多个环境变量,比如区分开发环境和测试环境,并在开发代码中可以进行区分。这个时候就需要通过引入.env环境变量进行区分,比如说开发环境就新建.env.dev文件,并进行相应的配置。


image.png

并且在package.json文件中进行相对应的配置。
image.png

配置完成后就可以在开发代码中引入当前环境了。

然后接下来就是webpack自定义配置,因为在vuecli2.0版本中,是在devServer中引入proxy进行代理,并且不想将静态文件放入到public文件夹中,因为这样改动会比较大,所以需要新建static文件夹,并修改webpack配置文件。因为在vuecli4.0中,webpack配置文件是写在vue.config.js文件中,所以需要新建vue.config.js文件,并且在vue.config.js中加入相关配置信息。

const CopyWebpackPlugin = require('copy-webpack-plugin')

const outputDir = process.env.VUE_APP_ENV === 'production' ? 'dist' : 'dist-test'

module.exports = {

  outputDir: outputDir,

  assetsDir: 'public',

  filenameHashing: true,

  // When building in multi-pages mode, the webpack config will contain different plugins
  // (there will be multiple instances of html-webpack-plugin and preload-webpack-plugin).
  // Make sure to run vue inspect if you are trying to modify the options for those plugins.
  pages: {
    index: {
      // entry for the pages
      entry: 'src/main.js',
      // the source template
      template: 'public/index.html',
      // output as dist/index.html
      filename: 'index.html',
      // when using title option,
      // template title tag needs to be <%= htmlWebpackPlugin.options.title %>
      title: '',
      // chunks to include on this pages, by default includes
      // extracted common chunks and vendor chunks.
      chunks: ['chunk-vendors', 'chunk-common', 'index']
    }
    // when using the entry-only string format,
    // template is inferred to be `public/subpage.html`
    // and falls back to `public/index.html` if not found.
    // Output filename is inferred to be `subpage.html`.
    // subpage: ''
  },

  // eslint-loader 是否在保存的时候检查
  lintOnSave: true,

  // 是否使用包含运行时编译器的Vue核心的构建
  runtimeCompiler: false,

  // 默认情况下 babel-loader 忽略其中的所有文件 node_modules
  transpileDependencies: [],

  // 生产环境 sourceMap
  productionSourceMap: false,

  // cors 相关 https://jakearchibald.com/2017/es-modules-in-browsers/#always-cors
  // corsUseCredentials: false,
  // webpack 配置,键值对象时会合并配置,为方法时会改写配置
  // https://cli.vuejs.org/guide/webpack.html#simple-configuration
  configureWebpack: {
    externals: [
      function (context, request, callback) {
        if (/xlsx|canvg|pdfmake/.test(request)) {
          return callback(null, 'commonjs ' + request)
        }
        callback()
      },
      {
        'returnCitySN': 'returnCitySN'
      }
    ],
    plugins: [
      new CopyWebpackPlugin({
        patterns: [{
          from: './static',
          to: 'static'
        }]
      })
    ],
    performance: {
      hints: false,
      maxEntrypointSize: 2048000,
      maxAssetSize: 2048000
    }
    // {
    //   'returnCitySN': 'returnCitySN'
    // }
  },

  // webpack 链接 API,用于生成和修改 webapck 配置
  // https://github.com/mozilla-neutrino/webpack-chain
  chainWebpack: (config) => {
    // 因为是多页面,所以取消 chunks,每个页面只对应一个单独的 JS / CSS
    config.optimization
      .splitChunks({
        cacheGroups: {}
      })

    // 'node_modules' 目录下为外部库文件,不参与 eslint 检测
    config.module
      .rule('eslint')
      .exclude
      .add('/node_modules')
      .end()
  },

  // All options for webpack-dev-server are supported
  // https://webpack.js.org/configuration/dev-server/
  devServer: {
    open: true,

    host: '10.10.9.32',

    port: 8080,

    https: false,

    hotOnly: false,

    proxy: {
      '/local': {
        target: 'http://127.0.0.1:2020', // 开发环境
        changeOrigin: true, // 是否跨域
        pathRewrite: {
          '^/local': '/'
        } // 路径重定向
      }
    },

    before: app => {
    }
  },
  // 构建时开启多进程处理 babel 编译
  parallel: require('os').cpus().length > 1,

  // https://github.com/vuejs/vue-cli/tree/dev/packages/%40vue/cli-plugin-pwa
  pwa: {},

  // 第三方插件配置
  pluginOptions: {}
}

然后再配置babel.config.js,配置组件按需加载。

module.exports = {
  presets: [
    '@vue/cli-plugin-babel/preset',
    [
      '@babel/preset-env', {
        'targets': {
          'browsers': ['safari>=7', 'ie>=9', 'firefox>=69']
        },
        'useBuiltIns': 'usage',
        'corejs': 3
      }
    ]
  ],
  plugins: [
    [
      'component',
      {
        'libraryName': 'element-ui',
        'styleLibraryName': 'theme-chalk'
      }
    ]
  ]
}

然后就大功告成。
接着通过npm run dev,可能会出现很多插件未安装的提示,然后就通过安装相应的插件,就可以顺利跑起来了。
然后查看任务管理器,查看vscode占用进程,发现vscode占用的最大内存也就200多M


image.png

多次保存后,发现vscode内存占用变化并不大。所以开发环境多次保存代码导致的内存泄漏问题已经解决。


image.png

你可能感兴趣的:(vuecli2.x升级到vuecli4.0)