【vue】前端vue工程常用命令

关闭语法检查:

module.exports = defineConfig({
  lintOnSave: false
})

查看vue版本:

vue -V 或者vue --version

其他常用命令:

npm config set registry=https://registry.npm.taobao.org

npm config get registry

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

npm cache clean --force

npm install --legacy-peer-deps
npm install --legacy-peer-deps --loglevel verbose

npm config get fetch-retry-maxtimeout
npm config get fetch-timeout

npm i [email protected]~

netstat -aon|findstr 9019

你可能感兴趣的:(vue.js,前端框架,node.js)