2020年9月2日

eslint prettier vetur eslint

摘要: VScode (版本 1.47.3)安装 eslint prettier vetur 插件 .vue 文件使用 vetur 进行格式化 在文件 .prettierrc 里写 属于你的 pettier 规则 { "printWidth": 120, "tabWidth": 2, "singleQuot 阅读全文

posted @ 2020-09-02 15:49 章画 阅读(220) 评论(0) 推荐(0)

线上环境去除console

摘要: npm i -D babel-plugin-transform-remove-console babel.config.js // 获取 VUE_APP_ENV 非 NODE_ENV,测试环境依然 console 也就是说只有在上线环境移出所以的console const IS_PROD = ['p 阅读全文

posted @ 2020-09-02 15:12 章画 阅读(627) 评论(0) 推荐(0)

vue 多环境打包

摘要: 除了 VUE_APP_* 变量之外,在你的应用代码中始终可用的还有两个特殊的变量: NODE_ENV - 会是 "development"、"production" 或 "test" 中的一个。具体的值取决于应用运行的模式。 BASE_URL - 会和 vue.config.js 中的 public 阅读全文

posted @ 2020-09-02 15:10 章画 阅读(1570) 评论(0) 推荐(0)

导航