欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

详解项目升级到vue-cli3的正确姿势

程序员文章站 2022-11-14 19:38:10
一. 原以为升级vue-cli3的路线是这样的: 创建vue-cli3项目,按原有项目的配置选好各项配置 迁移目录 src->src static...

一. 原以为升级vue-cli3的路线是这样的:

创建vue-cli3项目,按原有项目的配置选好各项配置

详解项目升级到vue-cli3的正确姿势

迁移目录

src->src
static->public

对比新旧 package.json ,然后 yarn install ,完毕。

详解项目升级到vue-cli3的正确姿势

然鹅... 运行项目,报错 you are using the runtime-only build of vue......详解项目升级到vue-cli3的正确姿势详解项目升级到vue-cli3的正确姿势

然后去查了下旧项目的相关字眼文件:

详解项目升级到vue-cli3的正确姿势

噢,原来是vue-cli3的webpack相关文件都得自己写。于是乎根据官网的指引,在根目录创建了 vue.config.js

此时粗略配置:

 chainwebpack: config => {
 config.module
  .rule('vue')
  .use('vue-loader')
  .loader('vue-loader')
  .tap(options => {
  options.compileroptions.preservewhitespace = false
  return options
  })
 config.resolve.alias
  .set('vue$', 'vue/dist/vue.esm.js')
  .set('@', resolve('src'))
 }

二. 此时勉强能跑起来,但后续遇到了这些坑:

#1 public 静态资源不加载

```
 const copywebpackplugin = require('copy-webpack-plugin')
 // ....
 // 确保静态资源
 config.resolve.extensions = ['.js', '.vue', '.json', '.css']
 config.plugins.push(
 new copywebpackplugin([{ from: 'public/', to: 'public' }]),
)
```

#2 chrome 查看样式时无法找到源文件

详解项目升级到vue-cli3的正确姿势

原因: vue-cli3 里默认关闭 sourcemap,样式都会被打包到首页。 解决: 需要自己配置打开

 // 让样式找到源
 css: {
 sourcemap: true
 },

#3 生产环境的 debugerconsole 无法通过 uglifyjs-webpack-pluginuglify-es 剔除

原因:不支持 es6 , 需要配置 babel ( uglify-es 按配置填会显示不存在选项)

解决:插件

```
const terserplugin = require('terser-webpack-plugin')
if (process.env.node_env === 'production') {
 // 为生产环境修改配置...
 new terserplugin({
 cache: true,
 parallel: true,
 sourcemap: true, // must be set to true if using source-maps in production
 terseroptions: {
  compress: {
  drop_console: true,
  drop_debugger: true
  }
 }
 })
} else {
 // 为开发环境修改配置...
}
```

#4 无法在 config 目录下配置不同环境的 api_url ,用于跨域请求

原因: vue-cli3 中需要遵循变量规则,使用 vue_app 前缀

官方规则: 在客户端侧代码中使用环境变量

解决:于是你需要创建如下几个文件:

详解项目升级到vue-cli3的正确姿势

.local 也可以加在指定模式的环境文件上,比如 .env.development.local 将会在 development 模式下被载入,且被 git 忽略。

文件内容:

// env.development.local
node_env = development
vue_app_url = http://xxx.x.xxx/

#5 vue-cli代理转发控制台反复打印 "websocket connection to'ws://localhost..."

详解项目升级到vue-cli3的正确姿势

解决方法:

vue.config.js 中配置 devserver.proxywsfalse

结合上述两步,相对应的 vue.config.js ,需要这么写:

const env = process.env.node_env
let target = process.env.vue_app_url

const devproxy = ['/api', '/'] // 代理
// 生成代理配置对象
let proxyobj = {};
devproxy.foreach((value, index) => {
 proxyobj[value] = {
 ws: false,
 target: target,
 // 开启代理:在本地会创建一个虚拟服务端,然后发送请求的数据,并同时接收请求的数据,这样服务端和服务端进行数据的交互就不会有跨域问题
 changeorigin: true,
 pathrewrite: {
  [`^${value}`]: value
 }
 };
})
// ....
devserver: {
 open: true,
 host: 'localhost',
 port: 8080,
 proxy: proxyobj
 }

最后贴上我的 vue.config.js

const copywebpackplugin = require('copy-webpack-plugin')
const terserplugin = require('terser-webpack-plugin')

const path = require('path')
const env = process.env.node_env
let target = process.env.vue_app_url

const devproxy = ['/api', '/'] // 代理

// 生成代理配置对象
let proxyobj = {};
devproxy.foreach((value, index) => {
 proxyobj[value] = {
 ws: false,
 target: target,
 // 开启代理:在本地会创建一个虚拟服务端,然后发送请求的数据,并同时接收请求的数据,这样服务端和服务端进行数据的交互就不会有跨域问题
 changeorigin: true,
 pathrewrite: {
  [`^${value}`]: value
 }
 };
})

function resolve (dir) {
 return path.join(__dirname, dir)
}

module.exports = {
 publicpath: '/',
 // 让样式找到源
 css: {
 sourcemap: true
 },
 configurewebpack: config => {
 // 确保静态资源
 config.resolve.extensions = ['.js', '.vue', '.json', '.css']
 config.plugins.push(
  new copywebpackplugin([{ from: 'public/', to: 'public' }]),
 )
 if (process.env.node_env === 'production') {
  // 为生产环境修改配置...
  new terserplugin({
  cache: true,
  parallel: true,
  sourcemap: true, // must be set to true if using source-maps in production
  terseroptions: {
   compress: {
   drop_console: true,
   drop_debugger: true
   }
  }
  })
 } else {
  // 为开发环境修改配置...
 }

 },
 chainwebpack: config => {
 config.module
  .rule('vue')
  .use('vue-loader')
  .loader('vue-loader')
  .tap(options => {
  options.compileroptions.preservewhitespace = false
  return options
  })
 config.resolve.alias
  .set('vue$', 'vue/dist/vue.esm.js')
  .set('@', resolve('src'))
 },
 devserver: {
 open: true,
 host: 'localhost',
 port: 8080,
 proxy: proxyobj
 }
}

三. eslint相关报错及配置

详解项目升级到vue-cli3的正确姿势

module.exports = {
 root: true,
 env: {
 node: true
 },
 'extends': [
 'plugin:vue/essential',
 '@vue/standard'
 ],
 rules: {
 'generator-star-spacing': 'off',
 'object-curly-spacing': 'off',
 // 最常出现的错误
 'no-unused-vars': 'off',
 // 最常出现的错误
 "vue/no-use-v-if-with-v-for": ["error", {
  "allowusingiterationvar": true
 }],
 'no-console': process.env.node_env === 'production' ? 'error' : 'off',
 'no-debugger': process.env.node_env === 'production' ? 'error' : 'off'
 },
 parseroptions: {
 parser: 'babel-eslint'
 }
}

最后的最后,跑个项目

yarn serve

详解项目升级到vue-cli3的正确姿势

yarn build

详解项目升级到vue-cli3的正确姿势

详解项目升级到vue-cli3的正确姿势

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。