I’m trying to deploy a simple Vue site and am getting the following error:
This dependency was not found:
* @/views/home/home.vue in ./src/router/index.js
However, I don’t run into any issues in development, or when previewing the viewing the production build locally. I’m using Vue CLI.
Furthermore, the code seems to be correct. I have import Home from "@/views/home/home.vue"; in router/index.js and the path to the file is src/views/home/home.vue. The GitHub repo is at GitHub - adamzerner/vue-starter: Boilerplate Vue code for startups and is available publicly.