-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Wired admin and user libraries to main library in usersrole-nx-app an…
…d setup hosting for usersrole-nx app
- Loading branch information
1 parent
25bf552
commit 23071e9
Showing
10 changed files
with
1,148 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,14 @@ | ||
{} | ||
{ | ||
"targets": { | ||
"users-role-nx": { | ||
"hosting": { | ||
"usersrole-nx": [ | ||
"users-role-nx" | ||
] | ||
} | ||
} | ||
}, | ||
"projects": { | ||
"default": "users-role-nx" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,4 +40,8 @@ Thumbs.db | |
|
||
.angular | ||
|
||
.nx/cache | ||
.nx/cache | ||
# Firebase | ||
.firebase | ||
*-debug.log | ||
.runtimeconfig.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,7 @@ | ||
import { Route } from '@angular/router'; | ||
import { UserComponent } from './user/user.component'; | ||
|
||
export const userRoutes: Route[] = [{ path: '', component: UserComponent }]; | ||
export const userRoutes: Route[] = [ | ||
{ path: '', component: UserComponent }, | ||
{ path: '/profile', component: UserComponent }, | ||
]; |
Oops, something went wrong.