[Vuejs]-Deploying a Vue app to IIS under the Default web site

0👍

I would check your rewrite rule, I think you’re getting an error due to too many redirects.

You’re sending anything intended to be picked up by VueRouter to the root of your site, rather than to your index.html. Change your rewrite rule to this

 <action type="Rewrite" url="/index.html" />

I think that might help solve your problem

Leave a comment