如何将nuxt应用程序部署到Firebase托管?

问题描述 投票:0回答:1

我是nuxt js和Firebase的新手,完成我的第一个应用程序后,我想将该应用程序部署到Firebase托管中,但是找不到任何可以帮助我的人

firebase vue.js google-cloud-functions nuxt.js firebase-hosting
1个回答
0
投票

完成编码后,只需在您的codes文件夹中运行firebase init(您应该已安装firebase cli),然后将您的应用程序连接到firebase托管。在初始化火力基地的问题中,有一个像What do you want to use as your public directory?的问题,需要输入dist,另一个像是Configure as a single-page app (rewrite all urls to /index.html)?的问题,因为它按下y使其成为spa(单页应用程序)。

安装完成后,只需运行nuxt generate,然后nuxt开始将文件生成到dist文件夹中。

完成后,请运行firebase deploy以将您的应用程序部署到fire base中,并为您提供应用程序的网址。

希望它对您有帮助:)

© www.soinside.com 2019 - 2024. All rights reserved.