一、从零配置 ESLint 工作流 eslint prettier stylelint husky lint-staged typescript babel-eslint eslint-config-airbnb-base eslint-config-alloy 为构建项目代码质量保驾护航。 传承 ...
分类:
其他好文 时间:
2020-07-24 21:17:43
阅读次数:
73
npm i body-parser post 请求主题中间件 const bodyParser = require('body-parser') const bodyParser = require('body-parser') // 创建 application/json 解析 const jso ...
分类:
其他好文 时间:
2020-07-23 23:04:49
阅读次数:
90
在 gulp 时代, 就开始有使用 yeoman, 感觉是一个特别方便的脚手架. 在使用 angularjs 的时候, 经常用这个脚手架生成一些小东西去学习 在有了 create-react-app 这个命令之后, 似乎很少开始接触 yeoman. yeoman 上有一个比较完善的学习教程 (get ...
分类:
其他好文 时间:
2020-07-22 01:39:04
阅读次数:
77
由于vue-cli4的index.html的title是在webpack中定义的,如下 <title><%= htmlWebpackPlugin.options.title %></title> 修改方法: 在vue.config.js中设置 module.exports = { //修改或新增ht ...
分类:
Web程序 时间:
2020-07-18 22:09:21
阅读次数:
263
步骤一 webpack 配置中添加ProvidePlugin插件,congfig/webpack.config.js: module.exports = function (webpackEnv) { plugins: [ new webpack.ProvidePlugin({ $: 'jquery ...
分类:
Web程序 时间:
2020-07-18 00:58:22
阅读次数:
169
问题 原来是这么写的,但是报错了! const CleanWebpackPlugin = require('clean-webpack-plugin'); module.exports = { plugins: [ new CleanWebpackPlugin(['dist']) // 打包之前,会 ...
分类:
Web程序 时间:
2020-07-17 11:25:23
阅读次数:
92
这两天在用 ant design mobile 的时候碰到个问题:组件引入失败。 一直解决不掉,查了半天不知道是我的理解问题还是怎么,就是找不到正确方法。(官网方法居然不行,增加学习难度啊!啊喂!~) 最后让我找到了这么一句:“原因: react-scripts 升级到 2.1.2 以后破坏了 re ...
分类:
其他好文 时间:
2020-07-15 15:15:13
阅读次数:
106
vue axios接口封装、Promise封装、简单的axios方法封装、vue接口方法封装、vue post、get、patch、put方法封装 ...
分类:
移动开发 时间:
2020-07-13 11:24:58
阅读次数:
84
给路径起别名 在根目录添加vue.config.js文件 module.exports = { configureWebpack: { resolve: { alias: { 'assets': '@/assets', 'common': '@/common', 'components': '@/c ...
分类:
Web程序 时间:
2020-07-10 21:24:14
阅读次数:
118
1.安装 zlib yarn add zlib 2.创建中间件 app/middleware/gzip.js const isJSON = require("koa-is-json"); const zlib = require("zlib"); module.exports = (options) ...
分类:
其他好文 时间:
2020-07-10 13:41:49
阅读次数:
154