如何将 Firebase 添加到 Vuepress?
Posted
技术标签:
【中文标题】如何将 Firebase 添加到 Vuepress?【英文标题】:How to add firebase to Vuepress? 【发布时间】:2019-04-02 22:25:18 【问题描述】:我正在尝试将 firebase 代码添加到 Vuepress 中,这样我就可以将一个简单的评论应用程序嵌入到所有 Vuepress 页面中。想知道如何做到这一点?
```
<script src="https://www.gstatic.com/firebasejs/5.5.6/firebase.js"></script>
<script>
// Initialize Firebase
var config =
apiKey: "asdf",
authDomain: "adsf-9e0b6.firebaseapp.com",
databaseURL: "https://asdf-9e0b6.firebaseio.com",
projectId: "sadf-9e0b6",
storageBucket: "adsf-9e0b6.appspot.com",
messagingSenderId: "asdf"
;
firebase.initializeApp(config);
</script>
```
【问题讨论】:
您最好将其包含在enchanceApp.js
文件中并使用 NPM 安装它。
【参考方案1】:
在 head 数组的 config.js
中添加类似的内容。请注意,这增加了firebase-app
(核心)、firebase-auth
、firestore
和cloud functions
,因为我在项目中使用了 4 个模块。
请注意,我也在此处初始化 firebase
和 firestore
。所以我将 firestore 作为全局变量。
当 firebase 加载时,所有这些都将被提升到应用的头部。
head: [
[
"script",
src: "https://www.gstatic.com/firebasejs/5.5.6/firebase-app.js"
],
[
"script",
src: "https://www.gstatic.com/firebasejs/5.5.6/firebase-auth.js"
],
[
"script",
src: "https://www.gstatic.com/firebasejs/5.5.6/firebase-firestore.js"
],
[
"script",
src: "https://www.gstatic.com/firebasejs/5.5.6/firebase-functions.js"
],
[
"script",
,
`var config =
apiKey: "apikey",
authDomain: "app.firebaseapp.com",
databaseURL: "https://app.firebaseio.com",
projectId: "appname",
storageBucket: "appname.appspot.com",
messagingSenderId: "12345"
;
firebase.initializeApp(config);
const firestore = firebase.firestore();
const settings = /* your settings... */
timestampsInSnapshots: true
;
firestore.settings(settings);`
],
]
【讨论】:
【参考方案2】:为避免 Vuepress 构建站点时出错,您需要仅在客户端运行 Firebase 初始化。
Google 转向了更通用的配置模型。它建议使用自动获取配置参数的包含。
我的回答还包括启用 Firebase 分析。
在config.js
head
数组中:
["script", src:"/__/firebase/8.2.1/firebase-app.js"],
["script", src:"/__/firebase/8.2.1/firebase-analytics.js"],
在enhanceApp.js
function loadjavascriptAsync(file, onload)
const script = document.createElement("script");
script.type = "text/javascript";
script.src = file;
script.onload = onload;
document.body.appendChild(script);
export default (
Vue, // the version of Vue being used in the VuePress app
options, // the options for the root Vue instance
router, // the router instance for the app
siteData, // site metadata
isServer
) =>
if (!isServer && !window.location.href.startsWith("http://localhost"))
loadJavaScriptAsync("/__/firebase/init.js", () =>
firebase.analytics();
router.afterEach(() =>
firebase.analytics().logEvent("page_view")
);
)
【讨论】:
以上是关于如何将 Firebase 添加到 Vuepress?的主要内容,如果未能解决你的问题,请参考以下文章