Skip to content

Commit 43a1fef

Browse files
authored
fix: Add missing semicolon in Vue C# example
Closes #1719
1 parent 551f137 commit 43a1fef

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/javascript/create-application-with-vuejs.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ For this example, you use an empty ASP.NET Core Application (C#). However, you c
7474
* Open the file *./Startup.cs*, and add the following lines to the Configure method:
7575

7676
```csharp
77-
app.UseDefaultFiles() // Enables default file mapping on the web root.
77+
app.UseDefaultFiles(); // Enables default file mapping on the web root.
7878
app.UseStaticFiles(); // Marks files on the web root as servable.
7979
```
8080

@@ -174,4 +174,4 @@ An unknown issue with the vue-cli 3.0 prevents automating the build process. Eac
174174
## See also
175175
https://vuejs.org/v2/guide - Vue get started guide.
176176
https://github.com/vuejs/vue-cli - Vue CLI project.
177-
https://webpack.js.org/configuration/ - Webpack configuration documentation.
177+
https://webpack.js.org/configuration/ - Webpack configuration documentation.

0 commit comments

Comments
 (0)