vue项目build

需要安装:
node.js
cnpm

命令行中键入

npm install cnpm -g --registry=https://registry.npm.taobao.org

通过 cnpm -v查看是否安装成功。

cnpm run build

在当前目录下,可以得到一个dist目录,这就是build出来的结果。

Note:
对一个从Git上新克隆的项目,需要先安装依赖:

cnpm install
或
npm install

如果有从其他项目中直接引用的代码(项目文件夹中有.gitmodules),则需要使用:

git submodule update --init --recursive

如果包没有安装完全报错,则删掉项目文件夹中生成的node_modules文件夹,重新执行npm i

你可能感兴趣的:(vue项目build)