fix: refine condition for serving static files in development environment
This commit is contained in:
@@ -77,7 +77,7 @@ namespace Api
|
|||||||
app.UseRewriter(rewriteOptions);
|
app.UseRewriter(rewriteOptions);
|
||||||
|
|
||||||
// Serve static files from the Angular app
|
// Serve static files from the Angular app
|
||||||
if (app.Environment.IsDevelopment())
|
if (app.Environment.IsDevelopment() && Directory.Exists(Path.Combine(Directory.GetCurrentDirectory(), "../Web/dist/Web/browser")))
|
||||||
{
|
{
|
||||||
var currentDirectory = Directory.GetCurrentDirectory();
|
var currentDirectory = Directory.GetCurrentDirectory();
|
||||||
var staticFilePath = Path.Combine(currentDirectory, "../Web/dist/Web/browser");
|
var staticFilePath = Path.Combine(currentDirectory, "../Web/dist/Web/browser");
|
||||||
|
|||||||
Reference in New Issue
Block a user