CentOS-7 搭建 Vue-element-admin
1、克隆项目
# 进入项目部署目录
cd /var/www/
# 下载项目
git clone https://github.com/PanJiaChen/vue-element-admin.git
.
├── babel.config.js
├── build
├── jest.config.js
├── jsconfig.json
├── LICENSE
├── mock
├── package.json
├── plopfile.js
├── plop-templates
├── postcss.config.js
├── public
├── README.es.md
├── README.ja.md
├── README.md
├── README.zh-CN.md
├── src
├── tests
└── vue.config.js
2、进入项目目录
cd vue-element-admin
3、安装依赖
# 更换 npm 源
npm config set registry https://registry.npm.taobao.org/
npm set sass_binary_site https://npm.taobao.org/mirrors/node-sass
# 更新依赖
npm install --unsafe-perm
也可以临时使用taobao源安装
#
npm install --registry=https://registry.npm.taobao.org --unsafe-perm
#
sudo npm i node-sass --sass_binary_site=https://npm.taobao.org/mirrors/