Firebase 主机:我可以部署,但如何隐藏源代码



我已经使用 Firebase 主机部署了我的网站,但是当我这样做时 右键单击>查看页面源代码:我可以看到源代码和我的 Firebase 项目信息

那么我怎么能隐藏它;我必须使用节点吗.js ?还是云函数?

我试过Node的HTTP npmconst http = require('http'(;

onRequest();
function onRequest (req , res){
http.createServer(onRequest).listen(3000);
console.log("Success");
}

但这无济于事

真的很困惑,请帮助我

如果你想

对用户隐藏一些东西,你需要把它隐藏在服务器端。因此,使用 Firebase 时,您可以使用 Firebase Cloud Function。他们接受nodejs,python和typescript。如果要在网站中存储变量,请使用数据库。

之后,请确保安全地设置数据库规则。

相关内容

  • 没有找到相关文章

最新更新