markdown 步骤只是从firebase托管页面复制,但在markdown中跟随文本编辑器

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown 步骤只是从firebase托管页面复制,但在markdown中跟随文本编辑器相关的知识,希望对你有一定的参考价值。

# Google Firebase Hosting Steps

## Install

### Install Firebase tool globally

```bash
npm install -g firebase-tools
```

## Deploy

### Sign in to Google

```bash
firebase login
```

### Initiate your project

```bash
firebase init
```

### Add your static files to your deploy directory (default directory is /public)

Nuxt example

```bash
npm run generate
```

### Deploy your website

```bash
firebase deploy
```

## Connect Domain

### Add domain

#### Domain

Enter the exact domain name you want people to see when they visit your site. It can be a domain (yourdomain.com) or a subdomain (app.yourdomain.com)

#### Redirect

Redirect to an existing website

### Verify Ownership

Add the generated TXT records to your DNS provider to verify you own

### Go live

Test it out!

以上是关于markdown 步骤只是从firebase托管页面复制,但在markdown中跟随文本编辑器的主要内容,如果未能解决你的问题,请参考以下文章