Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mySkill-x
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Registry
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
angular
mySkill-x
Commits
ef38df71
Commit
ef38df71
authored
Apr 17, 2025
by
Ooh-Ao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
prod
parent
8713d2b7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
1 deletions
+12
-1
auth.service.ts
src/app/shared/services/auth.service.ts
+0
-1
main.ts
src/main.ts
+12
-0
No files found.
src/app/shared/services/auth.service.ts
View file @
ef38df71
...
...
@@ -3,7 +3,6 @@ import { Injectable } from '@angular/core';
import
{
AngularFireAuth
}
from
'@angular/fire/compat/auth'
;
import
{
Router
}
from
'@angular/router'
;
import
{
BehaviorSubject
,
catchError
,
filter
,
Observable
,
switchMap
,
tap
,
throwError
}
from
'rxjs'
;
import
{
environment
}
from
'src/environments/environment'
;
@
Injectable
({
providedIn
:
'root'
,
...
...
src/main.ts
View file @
ef38df71
import
{
platformBrowserDynamic
}
from
'@angular/platform-browser-dynamic'
;
import
{
AppModule
}
from
'./app/app.module'
;
import
{
registerLicense
}
from
'@syncfusion/ej2-base'
;
import
{
environment
}
from
'./environments/environment'
;
import
{
enableProdMode
}
from
'@angular/core'
;
// Registering Syncfusion license key
registerLicense
(
'ORg4AjUWIQA/Gnt2U1hhQlJBfV5AQmBIYVp/TGpJfl96cVxMZVVBJAtUQF1hTX5ad0VjXH9ac3NRQWhc'
);
if
(
environment
.
production
)
{
enableProdMode
();
console
.
warn
(
`🚨 Console output is disabled on production!`
);
console
.
log
=
function
():
void
{
};
console
.
debug
=
function
():
void
{
};
console
.
warn
=
function
():
void
{
};
console
.
info
=
function
():
void
{
};
}
platformBrowserDynamic
().
bootstrapModule
(
AppModule
)
.
catch
(
err
=>
console
.
error
(
err
));
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment