在IDEA编辑器中,有时会出现项目工程目录不显示的情况。
清除配置,重新生成配置。
- 关闭IDEA,
- 删除项目文件夹下的.idea文件夹和*.iml文件
- 重新用IDEA工具打开项目
在IDEA编辑器中,有时会出现项目工程目录不显示的情况。
清除配置,重新生成配置。
非必须
停止所有容器
docker stop $(docker ps -a -q)
删除所有容器
docker rm $(docker ps -a -q)
必须
关闭防火墙,如果有iptables
也全部干掉
systemctl stop firewalld && systemctl disable firewalld
关闭selinux
setenforce 0
set -i's/SELINUX=enforcing/SELINUX=disabled/g' /etc/selinux/config
关闭swap
swapoff -a
重启docker
sudo systemctl daemon-reload
sudo systemctl restart docker
.features {
display: flex;
align-items: center;
padding: 2rem 0;
width: 100%;
}
.featureSvg {
height: 200px;
width: 200px;
}
.mainWrapper {
display: flex;
justify-content: space-between;
align-items: center;
background-repeat: no-repeat;
background-position: right center;
background-size: cover;
/*background-color: #2d364a;*/
background-image: url("../../../static/img/lanran.jpg");
}
.mainWrapper .title {
margin-bottom: 50px;
flex: 1 1;
display: flex;
flex-direction: column;
align-items: center;
font-size: 3rem;
position: relative;
bottom: 150px;
justify-content: center;
font-weight: 600;
}
.mainWrapper .subTitle {
font-size: 22px;
font-weight: 300;
}
.mainWrapper .subTitle > div > span {
color: #338bff;
}
.mainWrapper .subTitle .socialLinks > a {
cursor: pointer;
padding-right: 26px;
}
在今天,决定将前面使用
vue-press
版本的文档管理换成docusaurus
来使用,操作更加便捷,发布更加容易。