chore: move settings firebase things to platform (#2953)

This commit is contained in:
Akash K
2023-03-29 23:59:28 +05:30
committed by GitHub
parent 39afeab5f8
commit a66a2f5645
5 changed files with 116 additions and 2 deletions

View File

@@ -2,11 +2,13 @@ import { createHoppApp } from "@hoppscotch/common"
import { def as authDef } from "./firebase/auth"
import { def as envDef } from "./environments"
import { def as collectionsDef } from "./collections"
import { def as settingsDef } from "./settings"
createHoppApp("#app", {
auth: authDef,
sync: {
environments: envDef,
collections: collectionsDef,
settings: settingsDef,
},
})