我是网络开发的新手,我已经创建了一个我希望部署到firebase的应用程序。我提到了在线资源并执行了必要的步骤(如下所示)以使我的申请在线。现在,当我到达我的网站时,我没有看到数据加载。我收到了foll错误。现在,即使我删除错误中引用的“滚动到顶部”脚本,也没有数据加载。
GET https://arrow.scrolltotop.com/arrow88.js net::ERR_INSECURE_RESPONSE
如果可以的话,我正在引导您完成我的工作流程。任何帮助将不胜感激。
foll是我的package.json:
{
"name": "xxx",
"version": "1.0.0",
"description": "",
"main": "index.js",
"dependencies": {
"angular-animate": "^1.5.0",
"angular": "^1.5.0",
"angular-aria": "^1.5.0",
"angular-ui-router": "^0.2.18",
"mdi": "^1.4.57",
"angular-material": "^1.0.5"
},
"devDependencies": {},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC"
}
foll是我的firebase.json
{
"firebase": "xxx",
"public": ".",
"ignore": [
"firebase.json",
"**/.*"
]
}
它认为值得一提的是,当我在本地http服务器上运行应用程序时,我没有收到空白页面。应用程序加载,我从firebase获取所有数据,没有任何错误。
由于