跳到主要内容

· 阅读需 1 分钟
wxvirus

在IDEA编辑器中,有时会出现项目工程目录不显示的情况。

清除配置,重新生成配置。

  1. 关闭IDEA,
  2. 删除项目文件夹下的.idea文件夹和*.iml文件
  3. 重新用IDEA工具打开项目

· 阅读需 3 分钟
wxvirus

准备工作

  1. 非必须

  2. 停止所有容器

    docker stop $(docker ps -a -q)
  3. 删除所有容器

    docker rm $(docker ps -a -q)
  4. 必须

  5. 关闭防火墙,如果有iptables也全部干掉

    systemctl stop firewalld && systemctl disable firewalld
  6. 关闭selinux

  7. setenforce 0

  8. set -i's/SELINUX=enforcing/SELINUX=disabled/g' /etc/selinux/config

  9. 关闭swap

    swapoff -a
  10. 重启docker

    sudo systemctl daemon-reload
    sudo systemctl restart docker

· 阅读需 1 分钟
wxvirus
styles.module.css
.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;
}

· 阅读需 1 分钟
wxvirus

wiki创建

在今天,决定将前面使用vue-press版本的文档管理换成docusaurus来使用,操作更加便捷,发布更加容易。