Open brunocasarotti opened 5 years ago
Putting the following vue-shim.d.ts declaration file under my ./src directory solves the problem:
declare module "*.vue" {
import Vue from "vue";
export default Vue;
}
A solution from https://github.com/vuejs/vue-cli/issues/1198
I'm trying to to run
npm run build
and I am getting this errorI can't figure it out. I am already using
"vue-loader": "^14.2.2"