If working in Visual Studio 2017
See original GitHub issueJust to mention, that will need to set mimeType for “.vue” extension file to use httpvueloader
May need to do it in Project “ApplicationHost” config file or in IIS Express “ApplicationHost” config file.
Project: C:\Users<your name>\Documents\Visual Studio 2017\Projects<project name>.vs\config
IIS Express: C:\Users<your name>\Documents\IISExpress\config
<mimeMap fileExtension=".vue" mimeType="application/javascript" />
Otherwise, keeps throwing file not found when referencing url file <blah>.vue.
Issue Analytics
- State:
- Created 5 years ago
- Reactions:3
- Comments:9
Top Results From Across the Web
Visual Studio 2017 Builds the code but runs a previous version.
Open Visual Studio to you project then in Solution Explorer right click, select configuration manager and verify the build is checked on the ......
Read more >Getting Started with Visual Studio 2017 – Building your first app
Get started with Visual Studio by creating your first C# app and running it.Download Visual Studio for free at ...
Read more >Visual Studio Community 2017 Debugger not working correctly
When I set a breakpoint on my Windows Form applicaton, when running the program it does not stop at the breakpoint. I am...
Read more >asp.net - Visual Studio 2017 error: Unable to start program, An ...
I had multiple instances of Chrome open. I only closed the one that I was using to debug. I did not restart VS2017....
Read more >Introduction to Visual Studio - GeeksforGeeks
Getting Started with Visual Studio 2017 · First, you have to download and install the Visual Studio. · You can see a number...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
I know this is an old issue, but another way to set this up in an ASP.NET app, is to add the following to the web.config:
In MVC Core projects you can use something like this in your
Startup.cs
Configure:I feel that’s more maintainable than in the ApplicationHost.