1.查看系统日志 less /var/logs/message May 12 21:54:41 localhost python: SELinux is preventing /usr/libexec/ibus-x11 from read access on the file /usr/share/themes/Ant/gtk-3.20/gtk.css.#012#012***** Plugin catchall (100. confidence) suggests ************…
一.新建项目 二.运行 npm install npm run start 三.多环境切换 踩坑后总结的方法.. 首先看到package.json 前面的参数都是命令.比如“start”的意思就是npm run start,“build”的意思就是npm run build 往里面传的参数中,--config是必须的,现在我为了区分多环境,设置了dev.dev_test.dev_local三个参数,也就是npm run dev_test启动之类. 注意到下面几个参数 为了后面能判断是什么参数增加…