Skip to content

Commit 9faec0c

Browse files
committed
Add Vite info screenshots
1 parent d2384f4 commit 9faec0c

File tree

3 files changed

+239
-0
lines changed

3 files changed

+239
-0
lines changed

MyApp/_pages/_template-diagrams.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,41 @@ title: React Templates
33
---
44

55

6+
## Vue SPA
7+
8+
### Development
9+
10+
```mermaid
11+
---
12+
config:
13+
layout: dagre
14+
look: neo
15+
theme: redux
16+
themeVariables:
17+
edgeLabelBackground: '#ffffff'
18+
---
19+
flowchart LR
20+
subgraph DEVELOPMENT["DEVELOPMENT"]
21+
direction LR
22+
DevServer[(".NET PROJECT<br>(localhost:5001)")]
23+
Identity("ASP.NET Core Identity<br>Razor Pages")
24+
Endpoints(".NET Endpoint Routing")
25+
DevNext[/"Vite App<br>(localhost:5173)<br>Runs concurrently"/]
26+
end
27+
DevServer -- /Identity/* --> Identity
28+
DevServer -- /* --> Endpoints
29+
DevServer -- /* Fallback<br>(Proxied) --> DevNext
30+
DevServer -- Vite HMR<br>(Websocket) --> DevNext
31+
32+
Identity:::static
33+
Endpoints:::static
34+
DevServer:::netHost
35+
DevNext:::nextApp
36+
classDef netHost fill:#dbeafe,stroke:#1e3a8a,stroke-width:2px,color:#1e3a8a
37+
classDef nextApp fill:#f3e8ff,stroke:#6b21a8,stroke-width:2px,color:#6b21a8
38+
classDef static fill:#ecfdf5,stroke:#047857,stroke-width:2px
39+
```
40+
641
## Angular SPA
742

843
### Development

MyApp/wwwroot/img/pages/templates/info/vite-dev.svg

Lines changed: 102 additions & 0 deletions
Loading

MyApp/wwwroot/img/pages/templates/info/vite-prod.svg

Lines changed: 102 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)