bat启动vue项目
@echo off
set NODE_OPTIONS=--max_old_space_size=5096
npm install --registry=https://registry.npmjs.org & npm run dev
pause
bat编译vue项目
@echo off
set NODE_OPTIONS=--max_old_space_size=5096
npm cache clean -f & npm install --registry=https://registry.npmjs.org & npm run build
pause
