Skip to content

fix: Add missing semicolon in Vue C# example #1721

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 22, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/javascript/create-application-with-vuejs.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ For this example, you use an empty ASP.NET Core Application (C#). However, you c
* Open the file *./Startup.cs*, and add the following lines to the Configure method:

```csharp
app.UseDefaultFiles() // Enables default file mapping on the web root.
app.UseDefaultFiles(); // Enables default file mapping on the web root.
app.UseStaticFiles(); // Marks files on the web root as servable.
```

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