Skip to content

Commit 8a97cf5

Browse files
author
aligneddev
committed
fix up for React after rebase/merge issues
1 parent 29e8778 commit 8a97cf5

7 files changed

Lines changed: 5069 additions & 1700 deletions

File tree

src/BikeTracking.AppHost/AppHost.cs

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,8 @@
77
.WithHttpHealthCheck("/health")
88
.WithExternalHttpEndpoints();
99

10-
// AddViteApp was not working with Aurelia, so we use AddNodeApp to run the Vite preview server directly.
1110
var webFrontend = builder
12-
.AddNodeApp("frontend", "../BikeTracking.Frontend", "node_modules/vite/bin/vite.js")
13-
.WithNpm()
14-
.WithRunScript("preview")
15-
.WithHttpEndpoint(port: 4173, env: "PORT")
16-
.WithEnvironment("VITE_API_BASE_URL", "http://localhost:4173")
11+
.AddViteApp("frontend", "../BikeTracking.Frontend")
1712
.WithReference(apiService)
1813
.WaitFor(apiService);
1914

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"extends": ["stylelint-config-standard"]
3+
}

0 commit comments

Comments
 (0)