码迷,mamicode.com
首页 >  
搜索关键字:yarn rm crash    ( 7575个结果
vue3.0使用ant-design-vue进行按需加载原来这么简单
下载 ui库 yarn add ant-design-vue 默认是全局引入,打包后体积很大, 非常影响首屏加载速度, 按需加载 下载按需加载的插件;推荐使用cnpm cnpm install babel-plugin-import --save-dev 下载在开发环境中 在项目的根目录下创建 ba ...
分类:其他好文   时间:2021-07-29 16:21:44    阅读次数:0
树莓派3b的raspberrypi系统更改默认的python版本
输入python看默认版本,一般是2.7。 1、删除软链接命令 pi@raspberrypi:~ $ sudo rm /usr/bin/python 2、查看本机安装的python版本及路径 pi@raspberrypi:~ $ whereis python python: /usr/bin/pyt ...
分类:编程语言   时间:2021-07-14 18:43:59    阅读次数:0
在vite2和Vue3中配置Mockjs
在 Vite2 与 Vue3 中使用`Mockjs`时有一些官方文档没有提到的注意点,特意做此记录。 ...
分类:Web程序   时间:2021-07-08 17:44:22    阅读次数:0
基于vuepress搭建博客
在NPM 中安装 npm install -g yarn 安装完成后,你可以测试下自己的版本 yarn --version 安装vuepress (全局安装) yarn global add vuepress # 或者:npm install -g vuepress yarn init初始化项目创建 ...
分类:其他好文   时间:2021-07-05 19:08:37    阅读次数:0
CentOS8更换yum源
cd /etc/yum.repos.d/ rm -f CentOS-Base.repo CentOS-AppStream.repo CentOS-PowerTools.repo CentOS-centosplus.repo CentOS-Extras.repo curl -o CentOS-Base ...
分类:其他好文   时间:2021-07-05 16:52:40    阅读次数:0
reverse operation of git add
before commit, do: git rm --cached <filename> ATTENTION: do not use 'git rm <filename>', this will delete the file from disk if commited, first use: " ...
分类:其他好文   时间:2021-07-01 17:07:16    阅读次数:0
删除git文件版本控制
//-n 预览需要删除版本控制的文件列表 git rm -r -n --cached "vendor" //执行删除命令 git rm -r --cached "vendor" //添加文件到.gitignore //提交git commit -m "remove vendor" //提交到远程服务 ...
分类:其他好文   时间:2021-07-01 17:03:23    阅读次数:0
Docker(39)- docker 实战二之安装 Tomcat
背景 参考了狂神老师的 Docker 教程,非常棒! https://www.bilibili.com/video/BV1og4y1q7M4?p=15 直接运行容器 本地找不到镜像会自动下载 --rm Automatically remove the container when it exits ...
分类:其他好文   时间:2021-07-01 16:48:43    阅读次数:0
ANR与Crash
ANR是应用无响应,crash是崩溃闪退等 ANR原因:线程阻塞,输入性事件在特定时间内无法完成 crash原因:内存不足,数据转换异常 ANR问题:1.log文件夹下全局搜am_anr,此时会把log文件下下所有的包含am_anr的行显示出来(也可以搜activitymanager: ANR)2. ...
分类:其他好文   时间:2021-06-30 18:03:57    阅读次数:0
R语言中批量加载函数
1、 rm(list = ls()) dir() for (i in list.files(pattern=".r$")) { source(i) } 2、 rm(list = ls()) dir() for (i in dir()) { if(substr(i,nchar(i)-1,nchar(i ...
分类:编程语言   时间:2021-06-29 15:38:29    阅读次数:0
7575条   1 2 3 4 ... 758 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!