Go to file
annzee a872acc16c kubex 20210123 2021-01-23 18:02:16 +08:00
build first commit 2021-01-21 17:43:14 +08:00
mock 2021122 2021-01-22 17:40:18 +08:00
public first commit 2021-01-21 17:43:14 +08:00
src kubex 20210123 2021-01-23 18:02:16 +08:00
.env.development kubex 20210123 2021-01-23 18:02:16 +08:00
.env.production first commit 2021-01-21 17:43:14 +08:00
.eslintignore first commit 2021-01-21 17:43:14 +08:00
.eslintrc.js first commit 2021-01-21 17:43:14 +08:00
.gitignore first commit 2020-11-10 15:36:19 +08:00
README.md first commit 2021-01-21 17:43:14 +08:00
babel.config.js first commit 2021-01-21 17:43:14 +08:00
jsconfig.json first commit 2021-01-21 17:43:14 +08:00
package-lock.json first commit 2021-01-21 17:43:14 +08:00
package.json kubex 20210123 2021-01-23 18:02:16 +08:00
postcss.config.js first commit 2021-01-21 17:43:14 +08:00
vue.config.js kubex 20210123 2021-01-23 18:02:16 +08:00

README.md

kubeX

电脑需要安装 node 环境

安装依赖命令

npm install

编译及热加载命令

npm run dev

生产环境打包命令

npm run build
# build for test environment
npm run build:stage

# build for production environment
npm run build:prod

Advanced

# preview the release environment effect
npm run preview

# preview the release environment effect + static resource analysis
npm run preview -- --report

# code format check
npm run lint

# code format check and auto fix
npm run lint -- --fix