Skip to content

Instantly share code, notes, and snippets.

View vlaja's full-sized avatar

Vlatko Vlahek vlaja

View GitHub Profile
@vlaja
vlaja / firebase.json
Created November 16, 2019 16:55
firebase.json file example for multiple targets under one project
{
"hosting": [
{
"target": "test",
"public": "build",
"ignore": ["firebase.json", "**/.*", "**/node_modules/**"],
"rewrites": [
{
"source": "**",
"destination": "/index.html"
@vlaja
vlaja / .firebaserc
Created November 16, 2019 16:12
.firebaserc file example for multiple targets under one project
{
"projects": {
"default": "project-name"
},
"targets": {
"project-name": {
"hosting": {
"production": [
"project-name"
],
@vlaja
vlaja / config.yml
Last active November 2, 2021 00:53
Firebase multi-site deployment config for CircleCI
version: 2.1
executors:
node10:
docker:
- image: circleci/node:10
working_directory: ~/project
commands:
build: