Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Small fix before deploying the application | firebase config #41

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions .firebase/hosting.ZGlzdFxzaG9wcGluLWxpc3QtYXBw.cache
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
826.8affccf55eee8988.js,1679737380238,b99e116087488e6d12fbd9087efbdb77e3cb5578350bcde6488c90e24955df5b
859.e221eeac0dde82f7.js,1679737380238,df426d8d9abacce51e45c7c08202fbfaee7aa9a5c47c8d1b4d6c58fa62a8e146
634.dc404bf64e865a7e.js,1679737380239,2aba3b39b89c3cd845180f29d91a11947cd7b3f381ad50b1eefcd2eb5ab59bbb
3rdpartylicenses.txt,1679737380241,e0c09cb202a2dae14babd4edd16f749f4596612d402794de552453a9847cdb76
favicon.ico,1677414596692,2c19690e9587bae12f419b34d2edeecc76808099540a9c9f4ea6194116cfc8f7
index.html,1679737382540,9cf7cbea6079bd5628a7ab2b3f8faf9542ef34bf13160eb001aefe96467408bb
433.56d8459295caeb68.js,1679737380238,87335a3112a9a8f38dafa8a40f65bc9e2bf9992530fe569c5abb6ac588df9385
runtime.fbee18370591f482.js,1679737380237,1f96d18f869eebaf01bbc3add5cb9eefced5eddcb60fea24228b893d7ed02900
polyfills.2b7149373eb43981.js,1679737380238,1a496b08c3546c2e48451fb87d114f8988b2aaac0ee33a3ab9b78bd95d38b51e
glyphicons-halflings-regular.4ba85deaf3670942.woff,1679737380237,5545c2bc0e53a582f6817f523b385ccf917c6ff12d5c55bcd9c2ca52666315a6
glyphicons-halflings-regular.7a0f4b092e86cb52.eot,1679737380237,ea8dc7fb0dcea3d5190acd81e18d27789cae28d533458579658427c519c314fb
glyphicons-halflings-regular.b70781972ce7320b.woff2,1679737380237,0561bd0dc33b73a085698d914614f7320f434be3640303c56e344af35e1842c5
glyphicons-halflings-regular.009b407a9881be10.ttf,1679737380237,6e0bd43454180016d5d1f4fc274618fc343593cfa33892858caf5057e3364707
styles.0d30d2eaba6eb045.css,1679737380237,3d2ddfa3018bd07106e2158d6148f8a06f282dc6c3ac59cd57a75b52379b08af
glyphicons-halflings-regular.85f0466cb4ab3a4d.svg,1679737380238,7d3e7f391c6375ce5e896afb31db29910558d35a469411c21331b6c571826184
main.1ecee3db42790ffe.js,1679737380238,7068c960f750b17451ae673c60207d80137d289ac115a7e4398cc1abdc149912
5 changes: 5 additions & 0 deletions .firebaserc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"projects": {
"default": "shoppinglistapp-39626"
}
}
16 changes: 16 additions & 0 deletions firebase.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"hosting": {
"public": "dist/shoppin-list-app",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
],
"rewrites": [
{
"source": "**",
"destination": "/index.html"
}
]
}
}
2 changes: 1 addition & 1 deletion src/app/auth/auth.service.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { HttpClient } from '@angular/common/http';
import { Injectable } from '@angular/core';
import { environment } from 'src/environments/environment.development';
import { environment } from 'src/environments/environment';
import { catchError, BehaviorSubject, tap } from 'rxjs';
import { errorMessageHandler } from './auth-errorMessages.services';
import { User } from './user.model';
Expand Down