Skip to content
Snippets Groups Projects
Commit f3875bac authored by OUARAB Juba's avatar OUARAB Juba
Browse files

fix: fix other deploying errors

parent ec8a66b5
No related branches found
No related tags found
No related merge requests found
...@@ -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"
......
<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>
......
<?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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment