npm
鼠年大吉
这个作者很懒,什么都没留下…
展开
-
vue (npm)yarn run serve ,保存后自动构建速度慢,卡在百分之七十左右。
上网查阅资料,说是node内存不足;解决办法如下:第一步:yarn add(npm install) babel-plugin-dynamic-import-node --save第二步:修改babel.config.js文件module.exports = { presets: [ '@vue/app' ], env: { development: { plugins: ['dynamic-import-node'] } }}以上操原创 2021-03-29 09:32:47 · 6595 阅读 · 2 评论 -
npm设置代理
vue 等前端开发,需要执行 npm install ;r如果你的网络需要代理认证,上网查什么安装淘宝镜像等都是浮云,真正的解决办法就是把npm设置代理,编译器等设置代理没有用。 npm config set proxy http://username:password@server:port npm config set https-proxy http://username...原创 2018-11-01 10:57:32 · 2136 阅读 · 0 评论 -
解决:Error: Can't find Python executable "python", you can set the PYTHON env variable
npm install时报错:Error: Can't find Python executable "python", you can set the PYTHON env variable上网查了好多方法,基本都不好用。以下方法亲测好用npm install --global --production windows-build-tools以管理员方式打开PowerShe...原创 2019-09-23 15:02:42 · 11926 阅读 · 4 评论