Skip to content

Installation

Incode edited this page Dec 20, 2019 · 2 revisions

环境准备

如果环境已经准备好了,那么请跳过此步骤。

  1. 安装 Node.js

    $ yum install nodejs -y
    

    安装完毕检查一下 node -v

配置项目

  1. 将项目克隆到本地

    $ git clone https://github.com/hanhuoer/Jusic-ui.git
    
  2. 安装项目

    $ npm install
    
  3. 修改配置

    $ vim Jusic-ui\src\config\environment.js
    

    找到 production,把后端项目的 base url 配置上

  4. 编译项目,编译成功后将会生成 dist 目录

    $ npm run build
    

至此,项目已经编译成功,外界访问 dist/index.html 即可看到页面。

Clone this wiki locally