Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
shopshpere-angular
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
OUARAB Juba
shopshpere-angular
Commits
f3875bac
Commit
f3875bac
authored
Nov 12, 2023
by
OUARAB Juba
Browse files
Options
Downloads
Patches
Plain Diff
fix: fix other deploying errors
parent
ec8a66b5
No related branches found
No related tags found
No related merge requests found
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
angular.json
+2
-1
2 additions, 1 deletion
angular.json
src/app/components/products/products.component.html
+1
-1
1 addition, 1 deletion
src/app/components/products/products.component.html
src/web.config
+17
-0
17 additions, 0 deletions
src/web.config
with
20 additions
and
2 deletions
angular.json
+
2
−
1
View file @
f3875bac
...
@@ -27,7 +27,8 @@
...
@@ -27,7 +27,8 @@
"inlineStyleLanguage"
:
"scss"
,
"inlineStyleLanguage"
:
"scss"
,
"assets"
:
[
"assets"
:
[
"src/favicon.ico"
,
"src/favicon.ico"
,
"src/assets"
"src/assets"
,
"src/web.config"
],
],
"styles"
:
[
"styles"
:
[
"src/styles.scss"
"src/styles.scss"
...
...
This diff is collapsed.
Click to expand it.
src/app/components/products/products.component.html
+
1
−
1
View file @
f3875bac
<ng-container
*ngIf=
"!productsList.length; else showProducts"
>
<ng-container
*ngIf=
"!productsList.length; else showProducts"
>
<div
class=
"center-content"
>
<div
class=
"center-content"
>
<p>
No products available yet.
<br
/>
Please come back later
</p>
<p>
No products available yet.
<br/>
The backend is loading... Please be patient, this may take a moment.
</p>
</div>
</div>
</ng-container>
</ng-container>
...
...
This diff is collapsed.
Click to expand it.
src/web.config
0 → 100644
+
17
−
0
View file @
f3875bac
<?
xml
version
=
"1.0"
encoding
=
"UTF-8"
?>
<
configuration
>
<
system
.
webServer
>
<
rewrite
>
<
rules
>
<
rule
name
=
"angular cli routes"
stopProcessing
=
"true"
>
<
match
url
=
".*"
/>
<
conditions
logicalGrouping
=
"MatchAll"
>
<
add
input
=
"{REQUEST_FILENAME}"
matchType
=
"IsFile"
negate
=
"true"
/>
<
add
input
=
"{REQUEST_FILENAME}"
matchType
=
"IsDirectory"
negate
=
"true"
/>
</
conditions
>
<
action
type
=
"Rewrite"
url
=
"/"
/>
</
rule
>
</
rules
>
</
rewrite
>
</
system
.
webServer
>
</
configuration
>
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment