[Vuejs]-Calendars not working after npm run build

0👍

The serve utility isn’t configured by default to support HTML5 history mode. The solution to this is to run serve in single mode to…

Rewrite all not-found requests to index.html

"scripts": {
  "start": "serve -s -p 3080 build"
}

The alternative is to just open the default page (ie http://localhost:3080/) and navigate to where you want to go.

Leave a comment