Хостинг нескольких Angular проектов в одном проекте Firebase - PullRequest
0 голосов
/ 19 февраля 2020

Я ищу хостинг сайта-портфолио с несколькими Angular проектами в рамках одного проекта Firebase (например, https://aaaaa.firebaseapp.com/). Допустим, у меня есть 3 angular приложений (ab c, def и ghi). Я буду отображать их на одной целевой странице портфолио и размещать на firebase. например https://aaaaa.firebaseapp.com/abc https://aaaaa.firebaseapp.com/def https://aaaaa.firebaseapp.com/ghi Как это можно сделать или вообще возможно? Пожалуйста, предложите.

1 Ответ

0 голосов
/ 25 февраля 2020

Firebase Hosting поддерживает несколько сайтов на проект. Затем можно настроить каждый сайт для обслуживания по пути.

{
  "hosting": [ {
      "target": "blog",  // "blog" is the applied target name for the Hosting site "myapp-blog"
      "public": "blog/dist",  // contents of this folder are deployed to the site "myapp-blog"

      // ...
    },
    {
      "target": "app",  // "app" is the applied target name for the Hosting site "myapp-app"
      "public": "app/dist",  // contents of this folder are deployed to the site "myapp-app"

      // ...

      "rewrites": [...]  // You can define specific Hosting configurations for each site
    }
  ]
}

https://firebase.google.com/docs/hosting/multisites#define_hosting_config

...