微信开发/SourceTree/Ngrok:npm构建问题汇总

微信开发工具

1.不允许将require函数赋值给其他变量


解决办法:

SourceTree(3.3.6为例)

1.下载git(https://git-scm.com/downloads)

2.下载并执行SourceTreeSetup-3.3.6.exe,然后关闭页面

3.打开 %LocalAppData%\Atlassian目录,接着进入SourceTree目录,创建accounts.json文件,并修改accounts.json内容如下:

[

  {

    "$id": "1",

    "$type": "SourceTree.Api.Host.Identity.Model.IdentityAccount, SourceTree.Api.Host.Identity",

    "Authenticate": true,

    "HostInstance": {

      "$id": "2",

      "$type": "SourceTree.Host.Atlassianaccount.AtlassianAccountInstance, SourceTree.Host.AtlassianAccount",

      "Host": {

        "$id": "3",

        "$type": "SourceTree.Host.Atlassianaccount.AtlassianAccountHost, SourceTree.Host.AtlassianAccount",

        "Id": "atlassian account"

      },

      "BaseUrl": "https://id.atlassian.com/"

    },

    "Credentials": {

      "$id": "4",

      "$type": "SourceTree.Model.BasicAuthCredentials, SourceTree.Api.Account",

      "Username": "",

      "Email": null

    },

    "IsDefault": false

  }

]

4.打开 %LocalAppData%\Atlassian,进入“SourceTree.exe_Url_22nyom4fx13nyinpnd55fhgmouxnlimq”(注该目录可能和版本相关,不同版本的路径可能不完全一样。)

接着进入"3.3.6.3829"目录,打开user.config文件,在里面加入六行代码。

                True

            

            

                20160201

            

5.再次执行SourceTreeSetup-3.3.6.exe,下一步,如果是弹窗,选择第4个

如果打开还是要注册,那就注册个Bitbucket账号,反正使用也是免费的。而且我也无能为力了。安装了两次,第一次这个方式可以的,第二次,怎么都不行,最终还是注册了一个账号。

如果没安装git:上述成功后,工具->选项->Git->启用支持,选择第一个


安装成功后,第一次clone会要求输入账号密码,后续就不用了,如果后续密码改动了,可以在

工具- 选项- 验证  Git已存密码 ,编辑你需要修改的密码

clone出错时,点开提示,看下到底是什么问题,别盲目搜


Ngrok内网穿透

教程地址:http://www.ngrok.cc

1.出现Invalid Host header

解决方法:在vue.config.js文件中,  devServer下加一行disableHostCheck: true,

可参考 https://www.jianshu.com/p/f8b4556b41e8

你可能感兴趣的:(微信开发/SourceTree/Ngrok:npm构建问题汇总)